commit 072a1857b0ebaae707af594205692a8dc90679ea
parent a6cbff51d05bd44474a98ea907479c59b32624e3
Author: Vincent Demeester <vincent@sbr.pm>
Date: Sun, 5 Nov 2023 15:57:11 +0100
Fix sakhalin and shikoku
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
Diffstat:
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/systems/hosts/sakhalin.nix b/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."/" = {
diff --git a/systems/hosts/shikoku.nix b/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;