diff options
| author | Karel Kočí <cynerd@email.cz> | 2025-11-14 09:18:36 +0100 |
|---|---|---|
| committer | Karel Kočí <cynerd@email.cz> | 2025-11-14 09:18:36 +0100 |
| commit | e44c078ebcea9d81da6d61a0ae596a3e46e9a12d (patch) | |
| tree | 8870b8640cec95c389b9afc5dbbdd048f88145ef /nixos/modules/hosts.nix | |
| parent | 7606d67ed1dc56b5b5f05b6423f7a5e81db05151 (diff) | |
| download | nixos-personal-e44c078ebcea9d81da6d61a0ae596a3e46e9a12d.tar.gz nixos-personal-e44c078ebcea9d81da6d61a0ae596a3e46e9a12d.tar.bz2 nixos-personal-e44c078ebcea9d81da6d61a0ae596a3e46e9a12d.zip | |
treewide: full update in some time
Diffstat (limited to 'nixos/modules/hosts.nix')
| -rw-r--r-- | nixos/modules/hosts.nix | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/nixos/modules/hosts.nix b/nixos/modules/hosts.nix index 9affe19..bd5a5ab 100644 --- a/nixos/modules/hosts.nix +++ b/nixos/modules/hosts.nix @@ -29,7 +29,12 @@ in { config = { cynerd.hosts = { zd = { + # Network "mox" = "10.8.0.1"; + "one0" = "10.8.0.2"; + # Local + "ridcully" = "10.8.0.59"; + "tc" = "10.8.0.99"; # Portable "binky" = "10.8.0.63"; }; @@ -53,7 +58,6 @@ in { # Local "mpd" = "10.8.2.51"; "errol" = "10.8.2.60"; - "ridcully" = "10.8.2.59"; "printer" = "10.8.2.90"; # Portable "albert" = "10.8.2.61"; @@ -76,6 +80,9 @@ in { networking.hosts = mkIf cnf.enable { # Zd "${cnf.zd.mox}" = ["mox.zd"]; + "${cnf.zd.one0}" = ["one0.zd"]; + "${cnf.zd.ridcully}" = ["ridcully"]; + "${cnf.zd.tc}" = ["tc.zd"]; "${cnf.zd.binky}" = ["binky.zd"]; # Wireguard "${cnf.wg.lipwig}" = ["lipwig.wg"]; @@ -92,7 +99,6 @@ in { "10.8.2.4" = ["mi3g.spt"]; "${cnf.spt.mpd}" = ["mpd.spt"]; "${cnf.spt.errol}" = ["errol"]; - "${cnf.spt.ridcully}" = ["ridcully"]; "${cnf.spt.albert}" = ["albert.spt"]; "${cnf.spt.binky}" = ["binky.spt"]; # Adm |
