diff options
author | Quentin Dufour <quentin@deuxfleurs.fr> | 2022-08-23 22:13:26 +0200 |
---|---|---|
committer | Quentin Dufour <quentin@deuxfleurs.fr> | 2022-08-23 22:13:26 +0200 |
commit | 88d57f8e34e1124a4f3abcc82f7ab3d54d5727d2 (patch) | |
tree | bc0cbddcb02d522c64164f1ae29ea0b04af1c9ad /cluster/prod/site | |
parent | 5994e41ad1fdba931ae488d8e0efb13f3e505c18 (diff) | |
download | nixcfg-88d57f8e34e1124a4f3abcc82f7ab3d54d5727d2.tar.gz nixcfg-88d57f8e34e1124a4f3abcc82f7ab3d54d5727d2.zip |
Add new cluster nodes
Diffstat (limited to 'cluster/prod/site')
-rw-r--r-- | cluster/prod/site/orion.nix | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/cluster/prod/site/orion.nix b/cluster/prod/site/orion.nix new file mode 100644 index 0000000..5a521d0 --- /dev/null +++ b/cluster/prod/site/orion.nix @@ -0,0 +1,11 @@ +{ config, pkgs, ... }: + +{ + deuxfleurs.site_name = "orion"; + deuxfleurs.lan_default_gateway = "192.168.1.254"; + deuxfleurs.lan_ip_prefix_length = 24; + deuxfleurs.ipv6_prefix_length = 64; + deuxfleurs.nameservers = [ "192.168.1.254" ]; + + networking.firewall.allowedTCPPorts = [ ]; +} |