From e801d5894f0f6133629872e1c71e95a22f5a74ec Mon Sep 17 00:00:00 2001 From: ners Date: Tue, 8 Jul 2025 10:33:20 +0200 Subject: [PATCH] nixos/network-interfaces-systemd: fix WoL policy handling --- nixos/modules/tasks/network-interfaces-systemd.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/tasks/network-interfaces-systemd.nix b/nixos/modules/tasks/network-interfaces-systemd.nix index 391303784969..0fcab643aad2 100644 --- a/nixos/modules/tasks/network-interfaces-systemd.nix +++ b/nixos/modules/tasks/network-interfaces-systemd.nix @@ -79,7 +79,7 @@ let links = mkIf i.wakeOnLan.enable { "40-${i.name}" = { matchConfig.name = i.name; - linkConfig.WakeOnLan = i.wakeOnLan.policy; + linkConfig.WakeOnLan = concatStringsSep " " i.wakeOnLan.policy; }; }; netdevs = mkIf i.virtual {