nixos/roon-server: fix broken user generation
Didn't notice this till I tried removing my custom roon user from the one I was testing with. There's not a 'groups' option for users, only group (primary group) and extraGroups. Use these. (#68337)
This commit is contained in:
parent
5bcb35b7ce
commit
752b8688b5
@ -66,7 +66,8 @@ in {
|
|||||||
if cfg.user == "roon-server" then {
|
if cfg.user == "roon-server" then {
|
||||||
isSystemUser = true;
|
isSystemUser = true;
|
||||||
description = "Roon Server user";
|
description = "Roon Server user";
|
||||||
groups = [ cfg.group "audio" ];
|
group = cfg.group;
|
||||||
|
extraGroups = [ "audio" ];
|
||||||
}
|
}
|
||||||
else {};
|
else {};
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user