nixos-config/hosts/x86_64-linux/beleth/hydra.nix

23 lines
407 B
Nix
Raw Normal View History

2024-07-24 14:11:31 +02:00
{
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;
}
];
}