diff --git a/config/network.nix b/config/network.nix index 93fe8c4..67d88b4 100644 --- a/config/network.nix +++ b/config/network.nix @@ -6,12 +6,20 @@ in { hostName = "adonis"; firewall.logRefusedPackets = true; enableIPv6 = true; - interfaces.ens3.ipv6.addresses = [ - { - address = "2a0a:4cc0:c1:15f3::10"; - prefixLength = 64; - } - ]; + interfaces.ens3.ipv6 = { + addresses = [ + { + address = "2a0a:4cc0:c1:15f3::10"; + prefixLength = 64; + } + ]; + routes = [ + { + via = "fe80::1"; + prefixLength = 0; + } + ]; + }; }; services.tor = {