16 lines
237 B
Nix
16 lines
237 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;
|
|
};
|
|
}
|