2024-04-02 19:53:17 +02:00
|
|
|
{ ... }:
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
nix.buildMachines =
|
|
|
|
|
let
|
|
|
|
|
system = "x86_64-linux";
|
|
|
|
|
protocol = "ssh-ng";
|
|
|
|
|
sshUser = "nixremote";
|
|
|
|
|
sshKey = "/root/.ssh/nixremote";
|
|
|
|
|
supportedFeatures = [ "nixos-test" "benchmark" "big-parallel" "kvm" ];
|
|
|
|
|
in
|
2024-04-02 20:15:18 +02:00
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
inherit system protocol sshUser sshKey supportedFeatures;
|
|
|
|
|
hostName = "mc7";
|
|
|
|
|
}
|
|
|
|
|
{
|
|
|
|
|
inherit system protocol sshUser sshKey supportedFeatures;
|
|
|
|
|
hostName = "mc6";
|
|
|
|
|
}
|
|
|
|
|
];
|
2024-04-02 19:53:17 +02:00
|
|
|
|
|
|
|
|
nix.distributedBuilds = true;
|
2024-04-02 20:15:18 +02:00
|
|
|
nix.extraOptions = ''
|
|
|
|
|
builders-use-substitutes = true
|
|
|
|
|
'';
|
2024-04-02 19:53:17 +02:00
|
|
|
}
|
|
|
|
|
# vim: set et ts=2 sw=2 ai:
|