From aab3423d33dbe2db6835e9ea20d6aa25bcbeee22 Mon Sep 17 00:00:00 2001 From: mc-fucker Date: Tue, 2 Apr 2024 20:15:18 +0200 Subject: [PATCH] added mc6 to remote build systems added substitutes --- modules/remotebuild/client.nix | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/modules/remotebuild/client.nix b/modules/remotebuild/client.nix index 7a52006..3644a62 100644 --- a/modules/remotebuild/client.nix +++ b/modules/remotebuild/client.nix @@ -9,12 +9,20 @@ sshKey = "/root/.ssh/nixremote"; supportedFeatures = [ "nixos-test" "benchmark" "big-parallel" "kvm" ]; in - [ { - #buildOptions ++ hostName = "mc7"; - inherit system protocol sshUser sshKey supportedFeatures; - hostName = "mc7"; - }]; + [ + { + inherit system protocol sshUser sshKey supportedFeatures; + hostName = "mc7"; + } + { + inherit system protocol sshUser sshKey supportedFeatures; + hostName = "mc6"; + } + ]; nix.distributedBuilds = true; + nix.extraOptions = '' + builders-use-substitutes = true + ''; } # vim: set et ts=2 sw=2 ai: