From 3e126bfbb88e5cf2574659a7d637659db958d61d Mon Sep 17 00:00:00 2001 From: Steven Allen Date: Thu, 15 Jan 2026 06:56:57 -0800 Subject: [PATCH] nixos/systemd-networkd: Add missing UseSIP option to DHCPv6 --- nixos/modules/system/boot/networkd.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nixos/modules/system/boot/networkd.nix b/nixos/modules/system/boot/networkd.nix index fd1fa65ef945..2385fa5c19a7 100644 --- a/nixos/modules/system/boot/networkd.nix +++ b/nixos/modules/system/boot/networkd.nix @@ -1143,6 +1143,7 @@ let "UseDNS" "UseDNR" "UseNTP" + "UseSIP" "SendHostname" "UseHostname" "Hostname" @@ -1170,6 +1171,7 @@ let (assertValueOneOf "UseDNS" boolValues) (assertValueOneOf "UseDNR" boolValues) (assertValueOneOf "UseNTP" boolValues) + (assertValueOneOf "UseSIP" boolValues) (assertValueOneOf "SendHostname" boolValues) (assertValueOneOf "UseHostname" boolValues) (assertValueOneOf "UseDomains" (boolValues ++ [ "route" ]))