diff --git a/hosts/tadpole/configuration.nix b/hosts/tadpole/configuration.nix index e83c2e1..3dcf2b4 100644 --- a/hosts/tadpole/configuration.nix +++ b/hosts/tadpole/configuration.nix @@ -1,5 +1,4 @@ { pkgs, ... }: - { imports = [ @@ -21,8 +20,6 @@ }; }; - networking.hostName = "tadpole"; - users.users.alex = { isNormalUser = true; extraGroups = [ "wheel" ]; diff --git a/hosts/tadpole/modules/network/default.nix b/hosts/tadpole/modules/network/default.nix new file mode 100644 index 0000000..c14c388 --- /dev/null +++ b/hosts/tadpole/modules/network/default.nix @@ -0,0 +1,6 @@ +{ ... }: +{ + networking = { + hostName = "tadpole"; + }; +}