blob: 9826bcaa048f4ab76b63b0b9ebb888357bd2ca76 (
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
|
{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.eth.services.helix-directory;
in {
options.eth.services.helix-directory = {
enable = mkEnableOption "Whether to enable helix-directory";
friendlyName = mkOption {
type = types.str;
default = "Helix (${config.networking.hostName})";
description = "Human-readable name to broadcast";
example = "My Media Server";
};
directory = mkOption {
type = types.str;
default = "";
description = "Directory to serve";
example = "/mnt/md0/media";
};
};
config = mkIf cfg.enable {
assertions = [
{
assertion = cfg.directory != "";
message = "must set config.eth.services.helix-directory.directory";
}
];
systemd.services.helix-directory = {
enable = true;
description = "Helix UPnP ContentDirectory server";
wants = [ "network.target" ];
after = [ "network.target" ];
wantedBy = [ "multi-user.target" ];
path = [ pkgs.ffmpeg ];
serviceConfig = {
DynamicUser = true;
ExecStart = "${pkgs.eth.helix}/bin/helix-directory -friendly-name ${escapeShellArg cfg.friendlyName} -path ${escapeShellArg cfg.directory}";
NoNewPrivileges = true;
ProtectHome = true;
ProtectKernelTunables = true;
ProtectControlGroups = true;
ProtectKernelModules = true;
};
};
};
}
|