From a4974d62fe32a4577d50cda37df41ebb085741b9 Mon Sep 17 00:00:00 2001 From: Jacob Hinkle Date: Mon, 14 Nov 2022 12:52:56 -0500 Subject: [PATCH] Change nix.maxJobs to nix.settings.max-jobs --- machines/buck/configuration.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/machines/buck/configuration.nix b/machines/buck/configuration.nix index 89610aa..728cd3b 100644 --- a/machines/buck/configuration.nix +++ b/machines/buck/configuration.nix @@ -200,10 +200,12 @@ system.stateVersion = "22.05"; # Did you read the comment? nix = { - maxJobs = 8; gc = { automatic = true; }; - settings.experimental-features = ["nix-command" "flakes"]; + settings = { + experimental-features = ["nix-command" "flakes"]; + max-jobs = 4; + }; }; }