2021-04-19 00:39:33 +01:00
|
|
|
{ ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
ids.uids = {
|
|
|
|
# System user ids start at 400 (see nixos/modules/programs/shadow.nix)
|
|
|
|
webserver = 400;
|
2021-12-26 19:00:59 +00:00
|
|
|
minecraft = 401;
|
2021-04-19 00:39:33 +01:00
|
|
|
# The limit is 999
|
|
|
|
};
|
2021-12-26 19:00:59 +00:00
|
|
|
|
|
|
|
ids.gids = {
|
|
|
|
webserver = 400;
|
|
|
|
minecraft = 401;
|
|
|
|
};
|
2021-04-19 00:39:33 +01:00
|
|
|
}
|