summary refs log tree commit diff stats
path: root/system
diff options
context:
space:
mode:
Diffstat (limited to 'system')
-rw-r--r--system/marvin.nix25
1 files changed, 14 insertions, 11 deletions
diff --git a/system/marvin.nix b/system/marvin.nix
index 4579e23c..a69342a0 100644
--- a/system/marvin.nix
+++ b/system/marvin.nix
@@ -29,15 +29,18 @@
     auto-optimise-store = false; # https://github.com/NixOS/nix/issues/7273
   };
 
-  nix.buildMachines = [
-    {
-      protocol = "ssh-ng";
-      sshUser = "nixremote";
-      hostName = "linde.alanpearce.eu";
-      system = "aarch64-linux";
-      maxJobs = 2;
-      speedFactor = 1;
-      supportedFeatures = [ ];
-    }
-  ];
+  nix = {
+    distributedBuilds = true;
+    buildMachines = [
+      {
+        protocol = "ssh-ng";
+        sshUser = "nixremote";
+        hostName = "linde.alanpearce.eu";
+        system = "aarch64-linux";
+        maxJobs = 2;
+        speedFactor = 1;
+        supportedFeatures = [ ];
+      }
+    ];
+  };
 }