add remote builder for hs
Some checks failed
/ build-all (push) Has been cancelled

This commit is contained in:
ant 2025-10-04 12:05:26 +02:00
parent cadc429c05
commit 415d4820b1

View file

@ -143,4 +143,18 @@ in {
enable = true;
secretKeyFile = "/var/cache-priv-key.pem";
};
nix.distributedBuilds = true;
nix.settings.builders-use-substitutes = true;
nix.buildMachines = [
{
hostName = "192.168.1.2";
protocol = "ssh-ng";
sshUser = "remotebuild";
sshKey = "/home/ant/.ssh/id_ed25519";
system = pkgs.stdenv.hostPlatform.system;
supportedFeatures = [ "nixos-test" "big-parallel" "kvm" ];
}
];
}