diff options
author | Ethel Morgan <eth@ethulhu.co.uk> | 2020-06-29 23:18:00 +0100 |
---|---|---|
committer | Ethel Morgan <eth@ethulhu.co.uk> | 2020-06-29 23:18:00 +0100 |
commit | 8710105f65154d19f7c65be10dd95b0e4ccab63b (patch) | |
tree | ccce00feb646e4b28ac4045fd1e6ea59cf36b6a4 /nixos/modules/services/catbus-wakeonlan.nix | |
parent | ea0e976056ee1b1652a51dc1ae3b02debf80e74d (diff) |
refactor eth.services.catbus-{networkpresence,wakeonlan}
Diffstat (limited to '')
-rw-r--r-- | nixos/modules/services/catbus-wakeonlan.nix (renamed from nixos/modules/services/catbus-actuator-wakeonlan.nix) | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/nixos/modules/services/catbus-actuator-wakeonlan.nix b/nixos/modules/services/catbus-wakeonlan.nix index c78f974..0cf7edb 100644 --- a/nixos/modules/services/catbus-actuator-wakeonlan.nix +++ b/nixos/modules/services/catbus-wakeonlan.nix @@ -3,7 +3,7 @@ with lib; let - cfg = config.eth.services.catbus-actuator-wakeonlan; + cfg = config.eth.services.catbus-wakeonlan; configJSON = pkgs.writeText "config.json" (builtins.toJSON { mqttBroker = cfg.mqttBroker; @@ -12,7 +12,7 @@ let in { - options.eth.services.catbus-actuator-wakeonlan = { + options.eth.services.catbus-wakeonlan = { enable = mkEnableOption "Whether to enable the Catbus Wake-On-LAN actuator"; @@ -44,7 +44,7 @@ in { config = mkIf cfg.enable { - systemd.services.catbus-actuator-wakeonlan = { + systemd.services.catbus-wakeonlan-actuator = { enable = true; description = "Power devices on using Wake-On-LAN via Catbus"; wants = [ "network.target" ]; |