From e7c6a1e4a5b52a7c5d0a6c6a640801c8f8b05f91 Mon Sep 17 00:00:00 2001 From: Andre Date: Sat, 27 Jul 2024 12:17:55 -0400 Subject: [PATCH] Khanda: reduce number of cores that Nix can use to (hopefully) reduce system hanging --- hosts/Khanda/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hosts/Khanda/default.nix b/hosts/Khanda/default.nix index b9a4b12..c3edcb3 100644 --- a/hosts/Khanda/default.nix +++ b/hosts/Khanda/default.nix @@ -100,5 +100,5 @@ in nix.distributedBuilds = true; # Limit the number of cores Nix can use - nix.settings.cores = 10; + nix.settings.cores = 8; }