blob: dc6120c8693e9d359764dd2d2adbcad1113bed75 (
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
|
{ 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.path;
readOnly = true;
description = "Path of the UNIX socket to listen on.";
default = socket;
};
};
config = mkIf cfg.enable {
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;
};
};
};
}
|