From 40598dadd228c8d17e6e21250dd80f5bcd39ffc5 Mon Sep 17 00:00:00 2001 From: Audrey Dutcher Date: Tue, 13 May 2025 23:43:26 -0700 Subject: [PATCH] ipv6 for sunflower --- sites/sunflower/configuration.nix | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/sites/sunflower/configuration.nix b/sites/sunflower/configuration.nix index c3f21a1..9d18f90 100644 --- a/sites/sunflower/configuration.nix +++ b/sites/sunflower/configuration.nix @@ -10,6 +10,17 @@ networking.hostName = "sunflower"; networking.hostId = "77d68c52"; + systemd.network.enable = true; + systemd.network.networks."30-wan" = { + matchConfig.Name = "enp1s0"; + networkConfig.DHCP = "ipv4"; + address = [ + "2a01:4f9:c013:ce62::1/64" + ]; + routes = [ + { Gateway = "fe80::1"; } + ]; + }; system.stateVersion = "24.11";