Tristan Daniël Maat
7095ab2631
This has fallen into disuse since the big Java vulnerability, and I have ideas for better ways of doing this. Meanwhile it's making maintenance and refactoring more difficult. Hence I'll remove the server completely for the time being.
12 lines
192 B
Nix
12 lines
192 B
Nix
{...}: {
|
|
ids.uids = {
|
|
# System user ids start at 400 (see nixos/modules/programs/shadow.nix)
|
|
webserver = 400;
|
|
# The limit is 999
|
|
};
|
|
|
|
ids.gids = {
|
|
webserver = 400;
|
|
};
|
|
}
|