summary refs log tree commit diff stats
path: root/system/mba.nix
diff options
context:
space:
mode:
authorAlan Pearce2022-10-03 00:01:54 +0200
committerAlan Pearce2022-10-03 00:01:54 +0200
commit3a292a23130db25932a6ceec755e1bb19487e5d3 (patch)
treed2ffd644338fb5e3f243a3b1c9ff4b64e97075ca /system/mba.nix
parent574a3b9cf74275c99abfb59f676ea17f65df0404 (diff)
downloadnixfiles-3a292a23130db25932a6ceec755e1bb19487e5d3.tar.lz
nixfiles-3a292a23130db25932a6ceec755e1bb19487e5d3.tar.zst
nixfiles-3a292a23130db25932a6ceec755e1bb19487e5d3.zip
Update to nix-darwin unstable on mba
Diffstat (limited to 'system/mba.nix')
-rw-r--r--system/mba.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/system/mba.nix b/system/mba.nix
index e8d69490..6a896895 100644
--- a/system/mba.nix
+++ b/system/mba.nix
@@ -27,7 +27,9 @@
 
   # You should generally set this to the total number of logical cores in your system.
   # $ sysctl -n hw.ncpu
-  nix.maxJobs = 8;
-  nix.buildCores = 4;
+  nix.settings = {
+    max-jobs = 8;
+    cores = 4;
+  };
 }
 # vim: sw=2 sts=2 expandtab autoindent smarttab