about summary refs log tree commit diff
path: root/machines/profpatsch/base.nix
diff options
context:
space:
mode:
authorProfpatsch <mail@profpatsch.de>2022-03-02 13:22:12 +0100
committerProfpatsch <mail@profpatsch.de>2022-03-02 13:22:12 +0100
commit2bb2accdaaf34de557a6865e0e09a36691cb33be (patch)
tree2c297b59c1a86e7e6547e963d857f6b841c6d016 /machines/profpatsch/base.nix
parent0a967162479e03af3c0e4e7388a22b3bbb481a24 (diff)
machines/profpatsch: use new nix.settings attribute
Diffstat (limited to 'machines/profpatsch/base.nix')
-rw-r--r--machines/profpatsch/base.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/machines/profpatsch/base.nix b/machines/profpatsch/base.nix
index dd899cf0..e4dc4e00 100644
--- a/machines/profpatsch/base.nix
+++ b/machines/profpatsch/base.nix
@@ -10,9 +10,9 @@ in
 {
   config = {
     # correctness before speed
-    nix.useSandbox = true;
+    nix.settings.useSandbox = true;
 
-    nix.maxJobs = "auto";
+    nix.settings.maxJobs = "auto";
 
     # /tmp should never be depended on
     boot.cleanTmpDir = true;