From 526cb2c2091a8b326d412b4d753eb127458a9b4a Mon Sep 17 00:00:00 2001 From: Nathan McCarty Date: Mon, 27 Mar 2023 20:08:06 -0400 Subject: [PATCH] Nix build settings on mac --- machines/extremophile/configuration.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/machines/extremophile/configuration.nix b/machines/extremophile/configuration.nix index 6479c6b..4edf272 100644 --- a/machines/extremophile/configuration.nix +++ b/machines/extremophile/configuration.nix @@ -5,4 +5,9 @@ nathan = { config = { isDesktop = true; }; }; # Setup home manager home-manager.users.nathan = import ./home.nix; + # Configure nix build + nix.settings = { + cores = 8; + max-jobs = 2; + }; }