diff --git a/suites/common.nix b/suites/common.nix index 9b44417..f53627b 100644 --- a/suites/common.nix +++ b/suites/common.nix @@ -1,6 +1,7 @@ { pkgs, lib, + hostname, user, ... }: @@ -48,6 +49,9 @@ with lib; # Enable networking. networking.networkmanager.enable = true; + # Set hostname + networking.hostName = hostname; + # Define a user account. users.users.${user} = { isNormalUser = true;