summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAlan Pearce2024-04-10 11:34:28 +0200
committerAlan Pearce2024-04-10 11:34:28 +0200
commita2534b9daab7d39d2eeb005f7648b74bc72a8520 (patch)
tree9d74796d716e36f88cb83c33e023ae7f7dab71b1
parent9babe5a43770fe42ce9bb8a67d857b8aca0eea1d (diff)
downloadnixfiles-a2534b9daab7d39d2eeb005f7648b74bc72a8520.tar.lz
nixfiles-a2534b9daab7d39d2eeb005f7648b74bc72a8520.tar.zst
nixfiles-a2534b9daab7d39d2eeb005f7648b74bc72a8520.zip
mba: add secondary build machine for quicker aarch64-linux builds
-rw-r--r--system/mba.nix12
1 files changed, 12 insertions, 0 deletions
diff --git a/system/mba.nix b/system/mba.nix
index 4989c3b5..eb273c5e 100644
--- a/system/mba.nix
+++ b/system/mba.nix
@@ -26,6 +26,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 = 4;
+      supportedFeatures = [ ];
+    }
+  ];
+
   nix.linux-builder = {
     maxJobs = 4;
     config = {