nixos/network-interfaces-systemd: fix WoL policy handling (#423429)

This commit is contained in:
Martin Weinelt 2025-07-08 12:35:51 +02:00 committed by GitHub
commit a3cd3c9f91
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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 {