nixos-config/hosts/x86_64-linux/beleth/hydra.nix
2024-07-24 14:12:28 +02:00

23 lines
407 B
Nix

{
config,
lib,
...
}: {
services.hydra = {
enable = true;
hydraURL = "https://hydra.heroin.trade";
port = 3003;
useSubstitutes = true;
notificationSender = "hydra@localhost";
};
nix.buildMachines = [
{
hostName = "localhost";
system = "x86_64-linux";
supportedFeatures = ["kvm" "nixos-test" "big-parallel" "benchmark"];
maxJobs = 8;
}
];
}