nixos/heapster: define group, fix after #133166

This commit is contained in:
Guillaume Girol 2021-09-17 12:00:00 +00:00 committed by Yuka
parent 9e94e48b94
commit cd2b24c306
2 changed files with 4 additions and 2 deletions

View file

@ -244,7 +244,7 @@ in
#kibana = 211;# dynamically allocated as of 2021-09-03 #kibana = 211;# dynamically allocated as of 2021-09-03
xtreemfs = 212; xtreemfs = 212;
calibre-server = 213; calibre-server = 213;
heapster = 214; #heapster = 214; #dynamically allocated as of 2021-09-17
bepasty = 215; bepasty = 215;
# pumpio = 216; # unused, removed 2018-02-24 # pumpio = 216; # unused, removed 2018-02-24
nm-openvpn = 217; nm-openvpn = 217;

View file

@ -50,8 +50,10 @@ in {
}; };
users.users.heapster = { users.users.heapster = {
uid = config.ids.uids.heapster; isSystemUser = true;
group = "heapster";
description = "Heapster user"; description = "Heapster user";
}; };
users.groups.heapster = {};
}; };
} }