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