1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-22 21:50:55 +00:00

nixos/tcsd: make group uid dynamic

This commit is contained in:
Austin Butler 2021-09-19 12:42:46 -07:00
parent 8b6fa3c821
commit b88b46b830
2 changed files with 3 additions and 5 deletions

View file

@ -210,7 +210,7 @@ in
#fleet = 173; # unused
#input = 174; # unused
sddm = 175;
tss = 176;
#tss = 176; # dynamically allocated as of 2021-09-17
#memcached = 177; removed 2018-01-03
#ntp = 179; # dynamically allocated as of 2021-09-17
zabbix = 180;

View file

@ -149,12 +149,10 @@ in
users.users = optionalAttrs (cfg.user == "tss") {
tss = {
group = "tss";
uid = config.ids.uids.tss;
isSystemUser = true;
};
};
users.groups = optionalAttrs (cfg.group == "tss") {
tss.gid = config.ids.gids.tss;
};
users.groups = optionalAttrs (cfg.group == "tss") { tss = {}; };
};
}