Commit 072a1857b0eb

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