diff options
author | Alan Pearce | 2024-04-10 11:34:28 +0200 |
---|---|---|
committer | Alan Pearce | 2024-04-10 11:34:28 +0200 |
commit | a2534b9daab7d39d2eeb005f7648b74bc72a8520 (patch) | |
tree | 9d74796d716e36f88cb83c33e023ae7f7dab71b1 /system | |
parent | 9babe5a43770fe42ce9bb8a67d857b8aca0eea1d (diff) | |
download | nixfiles-a2534b9daab7d39d2eeb005f7648b74bc72a8520.tar.lz nixfiles-a2534b9daab7d39d2eeb005f7648b74bc72a8520.tar.zst nixfiles-a2534b9daab7d39d2eeb005f7648b74bc72a8520.zip |
mba: add secondary build machine for quicker aarch64-linux builds
Diffstat (limited to 'system')
-rw-r--r-- | system/mba.nix | 12 |
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 = { |