summaryrefslogtreecommitdiff
path: root/tests/networking-wakeonlan.nix
blob: 745c39c9b4d2ab0e6ecff02210bf7cc2cc349e35 (plain)
1
2
3
4
5
6
7
8
9
10
{ config, pkgs, ... }:

{
  networking.wakeOnLan.enable = true;

  test = ''
    echo checking wake on network access settings in /activate >&2
    grep "systemsetup -setWakeOnNetworkAccess 'on'" ${config.out}/activate
  '';
}