summaryrefslogtreecommitdiff
path: root/hosts/p-body/buildMachines.nix
diff options
context:
space:
mode:
authorseth <[email protected]>2023-05-22 02:35:15 -0400
committerseth <[email protected]>2023-05-23 11:05:28 -0400
commit630934a2631d9429b4e46c1b6ec0f6640f332384 (patch)
treed8bd14cafb0ac382625bc5dca79b84d497e9bab7 /hosts/p-body/buildMachines.nix
parent2cb6cfab9553184c1e6a10303cb832fe96080d00 (diff)
!hercules-ci -> hydra
Diffstat (limited to 'hosts/p-body/buildMachines.nix')
-rw-r--r--hosts/p-body/buildMachines.nix26
1 files changed, 26 insertions, 0 deletions
diff --git a/hosts/p-body/buildMachines.nix b/hosts/p-body/buildMachines.nix
new file mode 100644
index 0000000..5facb2d
--- /dev/null
+++ b/hosts/p-body/buildMachines.nix
@@ -0,0 +1,26 @@
+{config, ...}: let
+ inherit (config.networking) hostName;
+in {
+ nix = {
+ buildMachines = [
+ {
+ hostName = "localhost";
+ speedFactor = -1;
+ supportedFeatures = ["big-parallel" "benchmark" "kvm" "nixos-test"];
+ system = "x86_64-linux";
+ }
+ {
+ hostName = "atlas";
+ maxJobs = 4;
+ speedFactor = 2;
+ sshUser = "bob";
+ sshKey = config.age.secrets."${hostName}2atlas".path;
+ supportedFeatures = ["benchmark" "big-parallel" "gccarch-armv8-a" "kvm" "nixos-test"];
+ system = "aarch64-linux";
+ }
+ ];
+
+ distributedBuilds = true;
+ settings.builders-use-substitutes = true;
+ };
+}