14 lines
234 B
Nix
14 lines
234 B
Nix
{...}: {
|
|
ids.uids = {
|
|
# System user ids start at 400 (see nixos/modules/programs/shadow.nix)
|
|
webserver = 400;
|
|
minecraft = 401;
|
|
# The limit is 999
|
|
};
|
|
|
|
ids.gids = {
|
|
webserver = 400;
|
|
minecraft = 401;
|
|
};
|
|
}
|