about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--machines/profpatsch/base.nix4
-rw-r--r--machines/profpatsch/shiki.nix6
2 files changed, 5 insertions, 5 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;
diff --git a/machines/profpatsch/shiki.nix b/machines/profpatsch/shiki.nix
index 0b7600e4..23c66cf4 100644
--- a/machines/profpatsch/shiki.nix
+++ b/machines/profpatsch/shiki.nix
@@ -103,7 +103,7 @@ in {
     ];
 
     nix.distributedBuilds = true;
-    nix.trustedUsers = [ "@wheel" ];
+    nix.settings.trustedUsers = [ "@wheel" ];
     nix.buildMachines = [
       # access to the nix-community aarch64 build box
       {
@@ -124,10 +124,10 @@ in {
         supportedFeatures = [ "kvm" "big-parallel" "nixos-test" "benchmark" ];
       }
     ];
-    nix.binaryCaches = [
+    nix.settings.binaryCaches = [
       "https://digitallyinduced.cachix.org"
     ];
-    nix.binaryCachePublicKeys = [
+    nix.settings.binaryCachePublicKeys = [
       "digitallyinduced.cachix.org-1:y+wQvrnxQ+PdEsCt91rmvv39qRCYzEgGQaldK26hCKE="
     ];