From 3da8e0888a1a5a6832ef1e15f0f801e43ef21ff4 Mon Sep 17 00:00:00 2001 From: Christoph Cullmann Date: Tue, 11 Feb 2025 21:37:12 +0100 Subject: [PATCH] allow more cores for nix --- share/common.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/share/common.nix b/share/common.nix index 756f51c..53053c8 100644 --- a/share/common.nix +++ b/share/common.nix @@ -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;