summaryrefslogtreecommitdiffstats
path: root/nixos/modules/services/audio/roon-server.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/modules/services/audio/roon-server.nix')
-rw-r--r--nixos/modules/services/audio/roon-server.nix28
1 files changed, 26 insertions, 2 deletions
diff --git a/nixos/modules/services/audio/roon-server.nix b/nixos/modules/services/audio/roon-server.nix
index 9562ad1b164e..d4b0b098b78e 100644
--- a/nixos/modules/services/audio/roon-server.nix
+++ b/nixos/modules/services/audio/roon-server.nix
@@ -19,6 +19,20 @@ in {
TCP: 9100 - 9200
'';
};
+ user = mkOption {
+ type = types.str;
+ default = "roon-server";
+ description = ''
+ User to run the Roon Server as.
+ '';
+ };
+ group = mkOption {
+ type = types.str;
+ default = "roon-server";
+ description = ''
+ Group to run the Roon Server as.
+ '';
+ };
};
};
@@ -33,8 +47,8 @@ in {
serviceConfig = {
ExecStart = "${pkgs.roon-server}/opt/start.sh";
LimitNOFILE = 8192;
- DynamicUser = true;
- SupplementaryGroups = "audio";
+ User = cfg.user;
+ Group = cfg.group;
StateDirectory = name;
};
};
@@ -45,5 +59,15 @@ in {
];
allowedUDPPorts = [ 9003 ];
};
+
+
+ users.groups."${cfg.group}" = {};
+ users.users."${cfg.user}" =
+ if cfg.user == "roon-server" then {
+ isSystemUser = true;
+ description = "Roon Server user";
+ groups = [ cfg.group "audio" ];
+ }
+ else {};
};
}