diff options
author | Baptiste Jonglez <git@bitsofnetworks.org> | 2022-12-28 16:49:43 +0100 |
---|---|---|
committer | Baptiste Jonglez <git@bitsofnetworks.org> | 2022-12-28 16:49:43 +0100 |
commit | 1c48fd4ae446fd649833645ff4710faa09e9b642 (patch) | |
tree | 3dc734e56eb2e3f57f9abe62aba029f41091f895 /cluster/staging/site | |
parent | b63c03f6355aacd436058c0fd9f2bdb622b85f93 (diff) | |
download | nixcfg-1c48fd4ae446fd649833645ff4710faa09e9b642.tar.gz nixcfg-1c48fd4ae446fd649833645ff4710faa09e9b642.zip |
Add new staging zone and node
Diffstat (limited to 'cluster/staging/site')
-rw-r--r-- | cluster/staging/site/corrin.nix | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/cluster/staging/site/corrin.nix b/cluster/staging/site/corrin.nix new file mode 100644 index 0000000..98151f0 --- /dev/null +++ b/cluster/staging/site/corrin.nix @@ -0,0 +1,14 @@ +{ config, pkgs, ... }: + +{ + deuxfleurs.site_name = "corrin"; + deuxfleurs.lan_default_gateway = "192.168.1.1"; + deuxfleurs.ipv6_default_gateway = "fe80::7ec1:77ff:fe3e:bb90"; + deuxfleurs.lan_ip_prefix_length = 24; + deuxfleurs.ipv6_prefix_length = 64; + deuxfleurs.nameservers = [ "192.168.1.1" ]; + deuxfleurs.cname_target = "corrin.site.staging.deuxfleurs.org."; + deuxfleurs.public_ipv4 = "90.49.20.119"; + + networking.firewall.allowedTCPPorts = [ 80 443 ]; +} |