summaryrefslogtreecommitdiff
path: root/nixos/modules/services
diff options
context:
space:
mode:
authorEthel Morgan <eth@ethulhu.co.uk>2020-06-29 23:18:00 +0100
committerEthel Morgan <eth@ethulhu.co.uk>2020-06-29 23:18:00 +0100
commit8710105f65154d19f7c65be10dd95b0e4ccab63b (patch)
treeccce00feb646e4b28ac4045fd1e6ea59cf36b6a4 /nixos/modules/services
parentea0e976056ee1b1652a51dc1ae3b02debf80e74d (diff)
refactor eth.services.catbus-{networkpresence,wakeonlan}
Diffstat (limited to 'nixos/modules/services')
-rw-r--r--nixos/modules/services/catbus-networkpresence.nix (renamed from nixos/modules/services/catbus-observer-networkpresence.nix)8
-rw-r--r--nixos/modules/services/catbus-wakeonlan.nix (renamed from nixos/modules/services/catbus-actuator-wakeonlan.nix)6
2 files changed, 7 insertions, 7 deletions
diff --git a/nixos/modules/services/catbus-observer-networkpresence.nix b/nixos/modules/services/catbus-networkpresence.nix
index da54956..e69550c 100644
--- a/nixos/modules/services/catbus-observer-networkpresence.nix
+++ b/nixos/modules/services/catbus-networkpresence.nix
@@ -3,7 +3,7 @@ with lib;
let
- cfg = config.eth.services.catbus-observer-networkpresence;
+ cfg = config.eth.services.catbus-networkpresence;
configJSON = pkgs.writeText "config.json" (builtins.toJSON {
mqttBroker = cfg.mqttBroker;
@@ -12,7 +12,7 @@ let
in {
- options.eth.services.catbus-observer-networkpresence = {
+ options.eth.services.catbus-networkpresence = {
enable = mkEnableOption "Whether to enable the Catbus network-presence observer";
@@ -54,11 +54,11 @@ in {
assertions = [
{
assertion = cfg.interface != "";
- message = "must set config.eth.services.catbus-observer-networkpresence.interface";
+ message = "must set config.eth.services.catbus-networkpresence.interface";
}
];
- systemd.services.catbus-observer-networkpresence = {
+ systemd.services.catbus-networkpresence-observer = {
enable = true;
description = "Detect devices on the network to publish to Catbus";
wants = [ "network.target" ];
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" ];