summaryrefslogtreecommitdiffstats
path: root/modules
diff options
context:
space:
mode:
authortv <tv@shackspace.de>2015-06-30 00:06:15 +0200
committertv <tv@shackspace.de>2015-06-30 00:06:15 +0200
commite481906475fd41e1e7634caba13c6355a9f70274 (patch)
tree024a570e4ca91d5f7bf56e7a0fe163213efab20a /modules
parenta841d3fcbfb0073368fb2458bc5d0a4bfa5c48af (diff)
host wu: be nice and use all cores
Diffstat (limited to 'modules')
-rw-r--r--modules/wu/default.nix7
1 files changed, 6 insertions, 1 deletions
diff --git a/modules/wu/default.nix b/modules/wu/default.nix
index 54b8587c..37bf7588 100644
--- a/modules/wu/default.nix
+++ b/modules/wu/default.nix
@@ -56,7 +56,12 @@ in
}
];
- nix.maxJobs = 8;
+ nix = {
+ buildCores = 4;
+ maxJobs = 4;
+ daemonIONiceLevel = 1;
+ daemonNiceLevel = 1;
+ };
nixpkgs = {
url = "https://github.com/NixOS/nixpkgs";