From 0903867c6c823e39b71916ed668c368ee590e818 Mon Sep 17 00:00:00 2001 From: Kopatz <7265381+Kropatz@users.noreply.github.com> Date: Mon, 27 Oct 2025 16:55:24 +0100 Subject: [PATCH] add ipv6 to adam site --- systems/adam-site/configuration.nix | 13 +++++++++++++ 1 file changed, 13 insertions(+) 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;