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

27 lines
498 B
Nix
Raw Normal View History

2024-01-14 01:00:17 -05:00
let
baseUrl = "hydra.fancyTypist.com";
HOST = "localhost";
PORT = 8246;
in
{
services.hydra = {
enable = false;
2024-01-14 01:00:17 -05:00
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}
'';
};
};
};
}