Commit a6cbff51d05b

Vincent Demeester <vincent@sbr.pm>
2023-11-05 11:05:37
Fix shikoku
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
1 parent 7a8a236
Changed files (1)
systems
systems/hosts/shikoku.nix
@@ -18,14 +18,14 @@ in
   imports = [
     # (import ../../nix).home-manager-stable
     #../modules/default.stable.nix
-    import ../../users/vincent
-    import ../../users/root
+    (import ../../users/vincent)
+    (import ../../users/root)
   ];
 
   boot.supportedFilesystems = [ "zfs" ];
-  networking.hostId = builtins.substring 0 8 (builtins.hashString "md5" config.networking.hostName);
-
   networking = {
+    hostId = builtins.substring 0 8 (builtins.hashString "md5" config.networking.hostName);
+    hostname = hostname;
     bridges.br1.interfaces = [ "enp0s31f6" ];
     firewall.enable = false; # we are in safe territory :D
     useDHCP = false;