From de7157006c67422ea4b854302a96648307486efe Mon Sep 17 00:00:00 2001 From: Matei Adriel Date: Mon, 17 Jul 2023 19:44:54 +0200 Subject: [PATCH] HostId --- hosts/nixos/lapetus/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/hosts/nixos/lapetus/default.nix b/hosts/nixos/lapetus/default.nix index 08ce539..f42b18f 100644 --- a/hosts/nixos/lapetus/default.nix +++ b/hosts/nixos/lapetus/default.nix @@ -18,6 +18,10 @@ in # Set the name of this machine! networking.hostName = "lapetus"; + # ID required by zfs. + # Generated with `head -c 8 /etc/machine-id`. + networking.hostId = "08357db3"; + # https://nixos.wiki/wiki/FAQ/When_do_I_update_stateVersion system.stateVersion = "23.05";