summaryrefslogtreecommitdiff
path: root/modules/services/helix-player.nix
blob: 977e263c8fff5f3203e115e811b3b41bda9b270d (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
{ config, lib, pkgs, ... }:
with lib;

let

  cfg = config.eth.services.helix-player;

  systemdDirectoryName = "helix-player";
  runtimeDirectory = "/run/${systemdDirectoryName}";
  socket = "${runtimeDirectory}/listen.sock";

in {

  options.eth.services.helix-player = {

    enable = mkEnableOption "Whether to enable helix-player";

    socket = mkOption {
      type = types.str;
      readOnly = true;
      description = "Path of the UNIX socket to listen on.";
      example = socket;
    };
  };


  config = mkIf cfg.enable {

    eth.services.helix-player.socket = socket;

    systemd.services.helix-player = {
      enable = true;
      description = "Helix UPnP player & controller";
      wants = [ "network.target" ];
      after = [ "network.target" ];
      wantedBy = [ "multi-user.target" ];
      serviceConfig = {
        DynamicUser = true;
        Group = config.services.nginx.group;

        RuntimeDirectory = systemdDirectoryName;

        ExecStart = "${pkgs.eth.helix}/bin/helix-player -socket ${socket}";

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

}