fix: set groups for winters users

This commit is contained in:
Swarsel 2024-10-17 01:28:58 +02:00
parent d68de23b46
commit 63e2c16a19
Signed by: swarsel
GPG key ID: 26A54C31F2A4FD84
2 changed files with 20 additions and 0 deletions

View file

@ -7623,6 +7623,11 @@ Also, the system state version is set here. No need to touch it.
dockeruser = {
gid = 1155;
};
radarr = {};
readarr = {};
sonarr = {};
lidarr = {};
prowlarr = {};
};
users = {
dockeruser = {
@ -7633,22 +7638,27 @@ Also, the system state version is set here. No need to touch it.
};
radarr = {
isSystemUser = true;
group = "radarr";
extraGroups = [ "users" ];
};
readarr = {
isSystemUser = true;
group = "readarr";
extraGroups = [ "users" ];
};
sonarr = {
isSystemUser = true;
group = "sonarr";
extraGroups = [ "users" ];
};
lidarr = {
isSystemUser = true;
group = "lidarr";
extraGroups = [ "users" ];
};
prowlarr = {
isSystemUser = true;
group = "prowlarr";
extraGroups = [ "users" ];
};
};