nix-daemon: Bump the default number of build users

While it's annoying to pollute the user database with a lot of nixbld*
users, 10 users is really too low for many modern systems.
This commit is contained in:
Eelco Dolstra 2017-09-27 17:10:04 +02:00
parent d0d992a9a0
commit 79d547b4bb
No known key found for this signature in database
GPG Key ID: 8170B4726D7198DE

View File

@ -428,7 +428,7 @@ in
fi
'';
nix.nrBuildUsers = mkDefault (lib.max 10 cfg.maxJobs);
nix.nrBuildUsers = mkDefault (lib.max 32 cfg.maxJobs);
users.extraUsers = nixbldUsers;