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";