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

View file

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