nix/hosts/marvin/services/hydra.nix

18 lines
324 B
Nix
Raw Normal View History

2022-05-14 02:01:25 +00:00
{
pkgs,
inputs,
...
}: {
services.hydra = {
2022-05-01 13:47:49 +00:00
enable = true;
package = pkgs.hydra_unstable;
2022-07-01 21:10:54 +00:00
hydraURL = "https://hydra.thehedgehog.internal";
2022-05-01 13:47:49 +00:00
notificationSender = "hydra@localhost";
buildMachinesFiles = [];
useSubstitutes = true;
extraConfig = ''
using_frontend_proxy 1
'';
};
}