summaryrefslogtreecommitdiff
path: root/nixos/modules/services/catbus-observer-networkpresence.nix
blob: be48e27207b460f5d1e98b76dc692da4f24e7b72 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{ config, lib, pkgs, ... }:
with lib;

let

  cfg = config.eth.services.catbus-observer-networkpresence;

  configJSON = pkgs.writeText "config.json" ''
      {
        "mqttBroker": "tcp://${cfg.mqttBroker.host}:${toString cfg.mqttBroker.port}",

        "devices": {
          "TV": {
            "mac": "${cfg.devices.tv.mac}",
            "topic": "${cfg.devices.tv.topic}"
          }
        }
      }
  '';

in {

  options.eth.services.catbus-observer-networkpresence = {

    enable = mkEnableOption "Whether to enable the Catbus network-presence observer";

    interface = mkOption {
      type = types.str;
      description = "interface to scan";
      default = "";
      example = "enp2s0";
    };

    mqttBroker = {
      host = mkOption {
        type = types.str;
        description = "Host of the MQTT broker.";
        example = "localhost";
      };
      port = mkOption {
        type = types.int;
        description = "Port of the MQTT broker.";
        default = 1883;
      };
    };

    # TODO: replace this with a proper set of option sets.
    devices = {
      tv = {
        mac = mkOption {
          type = types.str;
          description = "The device's MAC address";
          example = "aa:bb:cc:dd:ee:ff";
        };
        topic = mkOption {
          type = types.str;
          description = "MQTT topic for controlling the device";
          example = "home/house/speakers/power";
        };
      };
    };
  };


  config = mkIf cfg.enable {
    assertions = [
      {
        assertion = cfg.interface != "";
        message = "must set config.eth.services.catbus-observer-networkpresence.interface";
      }
    ];

    systemd.services.catbus-observer-networkpresence = {
      enable = true;
      description = "Detect devices on the network to publish to Catbus";
      wants = [ "network.target" ];
      after = [ "network.target" ];
      wantedBy = [ "multi-user.target" ];
      serviceConfig = {
        DynamicUser = true;
        AmbientCapabilities = "CAP_NET_RAW CAP_NET_ADMIN";

        ExecStart = "${pkgs.eth.catbus-networkpresence}/bin/catbus-observer-networkpresence --config-path ${configJSON} --interface ${cfg.interface}";

        NoNewPrivileges = true;
        ProtectKernelTunables = true;
        ProtectControlGroups = true;
        ProtectKernelModules = true;
        RestrictNamespaces = true;
      };
    };
  };

}