From d8f9c63512b01e519465476a4dc7acb0848d676b Mon Sep 17 00:00:00 2001 From: Jared Baur Date: Wed, 2 Apr 2025 16:27:33 -0700 Subject: [PATCH] nixos/networkd: update valid KeepConfiguration values These changed with the release of systemd v257 from "dhcp*" to "dynamic*". --- nixos/modules/system/boot/networkd.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/modules/system/boot/networkd.nix b/nixos/modules/system/boot/networkd.nix index 89d967ccc0bf..6b7b0ee336ac 100644 --- a/nixos/modules/system/boot/networkd.nix +++ b/nixos/modules/system/boot/networkd.nix @@ -899,8 +899,8 @@ let boolValues ++ [ "static" - "dhcp-on-stop" - "dhcp" + "dynamic-on-stop" + "dynamic" ] )) ];