nixos: services: podgrab: use 'media' group

This commit is contained in:
Bruno BELANYI 2024-03-21 20:30:25 +01:00
parent f9db06a6d4
commit c18054cad7
1 changed files with 5 additions and 0 deletions

View File

@ -29,8 +29,13 @@ in
services.podgrab = {
enable = true;
inherit (cfg) passwordFile port;
group = "media";
};
# Set-up media group
users.groups.media = { };
my.services.nginx.virtualHosts = {
podgrab = {
inherit (cfg) port;