From 5e9e93361adf1451c8a2cf9bae56ec29337d7643 Mon Sep 17 00:00:00 2001 From: Eli Ribble Date: Fri, 16 Aug 2024 16:35:49 -0700 Subject: [PATCH] Remove the unnecessary network config options. Turns out my router advertises enough to do the right thing without this. --- quinn/etc/nixos/configuration.nix | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/quinn/etc/nixos/configuration.nix b/quinn/etc/nixos/configuration.nix index 4a3796e..1f66bd0 100644 --- a/quinn/etc/nixos/configuration.nix +++ b/quinn/etc/nixos/configuration.nix @@ -252,10 +252,6 @@ systemd.network.networks."10-wan" = { matchConfig.Name = "enp2s0"; networkConfig = { - Address = [ - "fc00::/64" - "2600:8800:2740:16::1/64" - ]; # start a DHCP Client for IPv4 Addressing/Routing DHCP = "ipv4"; # accept Router Advertisements for Stateless IPv6 Autoconfiguraton (SLAAC) @@ -263,18 +259,6 @@ }; # make routing on this interface a dependency for network-online.target linkConfig.RequiredForOnline = "routable"; - addresses = [{ - addressConfig = { - Address = "::/0"; - Scope = "global"; - }; - } - { - addressConfig = { - Address = "fc00::/64"; - Scope = "local"; - }; - }]; }; systemd.services.scan-uploader = {