19 lines
400 B
Nix
19 lines
400 B
Nix
{ config, ... }:
|
|
{
|
|
nix.distributedBuilds = true;
|
|
nix.buildMachines = [
|
|
{
|
|
hostName = "build04.nixos-community.org";
|
|
maxJobs = 4;
|
|
sshKey = config.sops.secrets.id_buildfarm.path;
|
|
sshUser = "nix";
|
|
system = "aarch64-linux";
|
|
supportedFeatures = [
|
|
"big-parallel"
|
|
"kvm"
|
|
"nixos-test"
|
|
];
|
|
}
|
|
];
|
|
sops.secrets.id_buildfarm = { };
|
|
}
|