nix/hosts/marvin/services/hydra.nix
2022-07-02 17:23:49 -04:00

17 lines
318 B
Nix

{
pkgs,
inputs,
...
}: {
services.hydra = {
enable = true;
package = pkgs.hydra_unstable;
hydraURL = "https://hydra.thehedgehog.me";
notificationSender = "hydra@localhost";
buildMachinesFiles = [];
useSubstitutes = true;
extraConfig = ''
using_frontend_proxy 1
'';
};
}