nixos-config/modules/server/hydra.nix

20 lines
413 B
Nix
Raw Normal View History

2023-11-14 19:18:39 +01:00
{ config, lib, ... }:
with lib;
{
options.server.builder.enableHydra = mkOption {
type = types.bool;
default = false;
example = true;
};
config = mkIf config.server.builder.enableHydra {
services.hydra = {
enable = true;
hydraURL = "http://localhost:3000";
notificationSender = "hydra@localhost";
buildMachinesFiles = [ ];
useSubstitutes = true;
};
};
}