1
1
Files
deployed-nixos-server-and-apps/nixos-apps/hydra.fancyTypist.com.nix
Bill Ewanick 9b77159110
All checks were successful
Gitea Actions Demo / build-site (push) Successful in 4s
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 3s
Run 'nix fmt' on whole repo
2026-01-03 20:47:42 -05:00

26 lines
497 B
Nix

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