From 95bc8f3c705e3c2b4d66bdbd42956bb1fa7a8296 Mon Sep 17 00:00:00 2001 From: Harald Hoyer Date: Wed, 25 Mar 2026 10:04:11 +0100 Subject: [PATCH] feat(attic): enable IPv6 router solicitation via dhcpcd - Set `networking.dhcpcd.IPv6rs` to `true` in `default.nix` to support IPv6 router solicitation. - Ensures better compatibility with networks requiring IPv6 RA for configuration. --- systems/x86_64-linux/attic/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/systems/x86_64-linux/attic/default.nix b/systems/x86_64-linux/attic/default.nix index 491f1c3..a0d887c 100644 --- a/systems/x86_64-linux/attic/default.nix +++ b/systems/x86_64-linux/attic/default.nix @@ -33,6 +33,7 @@ security.tpm2.abrmd.enable = false; networking.wireless.enable = false; + networking.dhcpcd.IPv6rs = true; networking.firewall.allowedTCPPorts = [ 8080 ]; networking.firewall.allowPing = true;