commit a6cbff51d05bd44474a98ea907479c59b32624e3 parent 7a8a236e6c67758ddbde706fb20db89806ee289e Author: Vincent Demeester <vincent@sbr.pm> Date: Sun, 5 Nov 2023 11:05:37 +0100 Fix shikoku Signed-off-by: Vincent Demeester <vincent@sbr.pm> Diffstat:
M | systems/hosts/shikoku.nix | | | 8 | ++++---- |
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/systems/hosts/shikoku.nix b/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;