blob: 9f9313183e6b630ac001d758b76d734f7186f245 (
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
|
{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.eth.services.snapclient;
in {
options.eth.services.snapclient = {
enable = mkEnableOption "Whether to enable snapclient.";
hostID = mkOption {
type = types.str;
default = config.networking.hostName;
description = "The name to give to the snapserver.";
example = "Living Room";
};
};
config = mkIf cfg.enable {
systemd.services.snapclient = {
enable = true;
description = "Snapcast client";
wants = [ "network.target" "sound.target" ];
after = [ "network.target" "sound.target" ];
wantedBy = [ "multi-user.target" ];
serviceConfig = {
DynamicUser = "yes";
Group = "audio";
ExecStart = "${pkgs.snapcast}/bin/snapclient --hostID ${escapeShellArg cfg.hostID}";
NoNewPrivileges = true;
ProtectHome = true;
ProtectKernelTunables = true;
ProtectControlGroups = true;
ProtectKernelModules = true;
RestrictAddressFamilies = "AF_INET AF_INET6 AF_UNIX";
RestrictNamespaces = true;
};
};
};
}
|