nixos/network-interfaces-systemd: fix WoL policy handling

This commit is contained in:
ners
2025-07-08 10:33:20 +02:00
parent 76c4ca93f4
commit e801d5894f

View File

@@ -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 {