From d6f5ca7cafcaad006697abedfb40c885427f3d58 Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Mon, 20 Apr 2020 17:05:37 +0100 Subject: feat(ops/nixos/camden): Add static IPv6 address to camden --- ops/nixos/camden/default.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/ops/nixos/camden/default.nix b/ops/nixos/camden/default.nix index 3bf0559b86..46e9b9c554 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 ]; }; -- cgit 1.4.1