diff options
-rw-r--r-- | ops/nixos/camden/default.nix | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/ops/nixos/camden/default.nix b/ops/nixos/camden/default.nix index 3bf0559b86d1..46e9b9c55422 100644 --- a/ops/nixos/camden/default.nix +++ b/ops/nixos/camden/default.nix @@ -73,6 +73,13 @@ in lib.fix(self: { networking = { hostName = "camden"; interfaces.enp1s0.useDHCP = true; + interfaces.enp1s0.ipv6.addresses = [ + { + address = "2a01:4b00:821a:ce02::5"; + prefixLength = 64; + } + ]; + firewall.allowedTCPPorts = [ 22 8080 80 443 1935 ]; }; |