allow more cores for nix

This commit is contained in:
Christoph Cullmann 2025-02-11 21:37:12 +01:00
parent 033ea74112
commit 3da8e0888a
No known key found for this signature in database

View file

@ -260,8 +260,8 @@ in
# general settings
settings = {
# don't hog all cores, might OOM, too
cores = 2;
max-jobs = 2;
cores = 4;
max-jobs = 4;
# auto optimize the store
auto-optimise-store = true;