summaryrefslogtreecommitdiff
path: root/nixos/modules/services/catbus-snapcast.nix
blob: 3f6cd929b8f4e6f7d91a755cd13091a89788fa8b (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
{ config, lib, pkgs, ... }:
with lib;

let

  cfg = config.eth.services.catbus-snapcast;

  configJSON = pkgs.writeText "config.json" (builtins.toJSON {
    mqttBroker = cfg.mqttBroker;
    topics = cfg.topics;
    snapcast = cfg.snapcast;
  });

in {

  options.eth.services.catbus-snapcast = {

    enable = mkEnableOption "Whether to enable the Catbus Snapcast bridge";

    mqttBroker = mkOption {
      type = types.str;
      description = "URL of the MQTT broker.";
      example = "tcp://broker.local:1883";
    };

    topics = {
      input = mkOption {
        type = types.str;
        description = "MQTT topic for controlling the Snapcast group input";
        example = "home/house/speakers/input_enum";
      };
    };

    snapcast = {
      groupId = mkOption {
        type = types.str;
        description = "The ID of the Snapcast group to control";
        example = "352aba34-0ba8-8a4e-9f46-cb634b1c800a";
      };
    };
  };


  config = mkIf cfg.enable {
    systemd.services.catbus-snapcast-actuator = {
      enable = true;
      description = "Control Snapcast via Catbus";
      wants = [ "network.target" ];
      after = [ "network.target" ];
      wantedBy = [ "multi-user.target" ];
      serviceConfig = {
        DynamicUser = true;

        ExecStart = "${pkgs.eth.catbus-snapcast}/bin/catbus-snapcast-actuator --config-path ${configJSON}";

        NoNewPrivileges = true;
        ProtectKernelTunables = true;
        ProtectControlGroups = true;
        ProtectKernelModules = true;
        RestrictAddressFamilies = "AF_INET AF_INET6";
        RestrictNamespaces = true;
      };
    };
    systemd.services.catbus-snapcast-observer = {
      enable = true;
      description = "Observe Snapcast for Catbus";
      wants = [ "network.target" ];
      after = [ "network.target" ];
      wantedBy = [ "multi-user.target" ];
      serviceConfig = {
        DynamicUser = true;

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

        NoNewPrivileges = true;
        ProtectKernelTunables = true;
        ProtectControlGroups = true;
        ProtectKernelModules = true;
        RestrictAddressFamilies = "AF_INET AF_INET6";
        RestrictNamespaces = true;
      };
    };
  };

}