diff options
| author | Fuwn <[email protected]> | 2024-09-25 03:03:57 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-09-25 03:03:57 -0700 |
| commit | 667ac8e701d09e112c842e10d61d290620cff331 (patch) | |
| tree | 55f32e028f603298e60ad7346295f502662f7c26 /hosts | |
| parent | resolved: move to core (diff) | |
| download | nixos-config-667ac8e701d09e112c842e10d61d290620cff331.tar.xz nixos-config-667ac8e701d09e112c842e10d61d290620cff331.zip | |
modules: move networking hostname to hosts
Diffstat (limited to 'hosts')
| -rw-r--r-- | hosts/himeji/default.nix | 5 | ||||
| -rw-r--r-- | hosts/kansai/default.nix | 1 |
2 files changed, 4 insertions, 2 deletions
diff --git a/hosts/himeji/default.nix b/hosts/himeji/default.nix index e5bdc60..3c3727b 100644 --- a/hosts/himeji/default.nix +++ b/hosts/himeji/default.nix @@ -8,6 +8,9 @@ ]; config = { + networking.hostName = "himeji"; + system.stateVersion = "24.05"; + modules = { nix.extend = false; @@ -20,7 +23,5 @@ ]; }; }; - - system.stateVersion = "24.05"; }; } diff --git a/hosts/kansai/default.nix b/hosts/kansai/default.nix index ebca9a8..164f0d5 100644 --- a/hosts/kansai/default.nix +++ b/hosts/kansai/default.nix @@ -6,5 +6,6 @@ ../../modules/options ]; + networking.hostName = "kansai"; system.stateVersion = "24.05"; } |