blob: dfa3bc0c2f7c8229140598f5d19d0acf19579f7c (
plain) (
tree)
|
|
{ config, ... }:
{
nix.buildMachines = [
{
hostName = "builder";
sshUser = "builder";
protocol = "ssh";
sshKey = config.age.secrets.ssh-remote-builder.path;
systems = [
"i686-linux"
"x86_64-linux"
];
maxJobs = 8;
speedFactor = 2;
supportedFeatures = [
"nixos-test"
];
}
];
nix.distributedBuilds = true;
programs.ssh.extraConfig = ''
Host builder
User builder
HostName rivendell
IdentityFile ${config.age.secrets.ssh-remote-builder.path}
'';
}
|