1
1
Fork 0
deployed-nixos-server-and-apps/nixos-apps/hydra.fancyTypist.com.nix

27 lines
497 B
Nix

let
baseUrl = "hydra.fancyTypist.com";
HOST = "localhost";
PORT = 8246;
in
{
services.hydra = {
enable = true;
port = PORT;
hydraURL = "https://${HOST}:${toString PORT}";
notificationSender = "hydra@fancyTypist.com";
buildMachinesFiles = [ ];
useSubstitutes = true;
};
services.caddy = {
enable = true;
virtualHosts = {
"${baseUrl}" = {
extraConfig = ''
reverse_proxy ${HOST}:${toString PORT}
'';
};
};
};
}