14 lines
147 B
Nix
14 lines
147 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
vars,
|
|
...
|
|
}:
|
|
let
|
|
interface = vars.interface;
|
|
in
|
|
{
|
|
networking.interfaces.${interface}.wakeOnLan.enable = true;
|
|
}
|