hydra: set localhost to use protocol null

This commit is contained in:
Christoph Hollizeck 2025-04-28 22:07:37 +02:00
parent 2209050e14
commit 6e5437a91f
Signed by: Daholli
GPG key ID: 249300664F2AF2C7

View file

@ -143,12 +143,29 @@ in
certificateScheme = "acme-nginx";
};
nix = {
distributedBuilds = true;
buildMachines = [
{
hostName = "localhost";
protocol = null;
system = "x86_64-linux";
supportedFeatures = [
"kvm"
"nixos-test"
"big-parallel"
"benchmark"
];
}
];
};
services.hydra = {
enable = true;
hydraURL = "http://localhost:${toString hydraPort}";
port = hydraPort;
notificationSender = "hydra@localhost";
buildMachinesFiles = [ ];
useSubstitutes = true;
};