diff --git a/systems/adam-site/configuration.nix b/systems/adam-site/configuration.nix index 335f2af..236d8ff 100644 --- a/systems/adam-site/configuration.nix +++ b/systems/adam-site/configuration.nix @@ -7,6 +7,19 @@ services.openssh.enable = true; networking.firewall.allowedTCPPorts = [ 22 80 443 ]; + networking = { + defaultGateway6 = { + address = "fe80::1"; + interface = "enp1s0"; + }; + + interfaces.enp1s0 = { + ipv6.addresses = [ { + address = "2a01:4f8:c013:232b::2"; + prefixLength = 64; + } ]; + }; + }; custom = { services = { acme.enable = true;