From 69beab48124eec3c98f8c45d56db9db833d3a65d Mon Sep 17 00:00:00 2001 From: Christoph Urlacher Date: Sat, 24 Jan 2026 01:31:54 +0100 Subject: [PATCH] Lib/Networking: Accept router advertisements --- lib/networking.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/networking.nix b/lib/networking.nix index 3001cbf7..c5b0a423 100644 --- a/lib/networking.nix +++ b/lib/networking.nix @@ -56,14 +56,14 @@ address = ips; gateway = routers; dns = nameservers; - routes = builtins.map (r: {Gateway = r;}) routers; + routes = builtins.map (r: {Gateway = r;}) routers; # TODO: We need to add a way to specify addresses without routes (IPv6 ULA) # See man systemd.network networkConfig = { # This corresponds to the [NETWORK] section DHCP = "no"; - # IPv6AcceptRA = "no"; + IPv6AcceptRA = "yes"; # Accept Router Advertisements # MulticastDNS = "no"; # LLMNR = "no"; # LinkLocalAddressing = "ipv6";