From 4e2415b3c27f305c0b809e8a25f65b2e76d46067 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Fri, 24 Jul 2026 23:20:46 +0200 Subject: [PATCH] nixos/systemd-resolved: apply transformation to resolve section In a previous change the transformSettings function was modified to look at the Resolve section, but since it got a second consumer in the mean time this regressed. We now target the resolved.conf explicitly instead. --- nixos/modules/system/boot/resolved.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/system/boot/resolved.nix b/nixos/modules/system/boot/resolved.nix index 6760dab044e9..966ddd396e11 100644 --- a/nixos/modules/system/boot/resolved.nix +++ b/nixos/modules/system/boot/resolved.nix @@ -48,7 +48,7 @@ let value ) settings; - resolvedConf = settingsToSections (transformSettings cfg.settings); + resolvedConf = settingsToSections { Resolve = transformSettings cfg.settings.Resolve; }; in { imports = [