Files
nix-config/modules/wake-on-lan.nix

8 lines
137 B
Nix

{ config, pkgs, lib, vars, ... }:
let
interface = vars.interface;
in
{
networking.interfaces.${interface}.wakeOnLan.enable = true;
}