diff options
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 ]; +} |