infra/modules/nixos/remote-builder/aarch64-build04.nix

17 lines
472 B
Nix
Raw Normal View History

2022-08-13 18:02:08 +02:00
{ config, ... }:
{
nix.distributedBuilds = true;
nix.buildMachines = [
{
2022-08-14 17:19:17 +02:00
hostName = "build04.nix-community.org";
2022-08-13 18:02:08 +02:00
maxJobs = 4;
2023-01-05 08:13:58 +10:00
protocol = "ssh"; # this machine is used by hydra which doesn't support ssh-ng
2022-08-13 18:02:08 +02:00
sshKey = config.sops.secrets.id_buildfarm.path;
2022-08-14 16:49:30 +02:00
sshUser = "nix";
2022-08-13 18:02:08 +02:00
system = "aarch64-linux";
2023-01-06 13:12:43 +10:00
supportedFeatures = [ "big-parallel" ]; # sync with build04/configuration.nix
2022-08-13 18:02:08 +02:00
}
];
2022-08-14 16:49:30 +02:00
sops.secrets.id_buildfarm = { };
2022-08-13 18:02:08 +02:00
}