66 lines
2.1 KiB
Nix
66 lines
2.1 KiB
Nix
{ lib, config, pkgs, ... }:
|
|
let
|
|
listenIPs = (import ../../utils/getInternalIP.nix config).listenIPs;
|
|
listenStatements = lib.concatStringsSep "\n" (builtins.map (ip: "listen ${ip}:443 http3;") listenIPs) + ''
|
|
add_header Alt-Svc 'h3=":443"';
|
|
'';
|
|
clean-cache = pkgs.callPackage ../../packages/clean-s3-cache.nix { };
|
|
in
|
|
{
|
|
imports = [
|
|
./postgres.nix
|
|
../../modules/hydra.nix
|
|
#./nix-cache-upload.nix
|
|
];
|
|
services.hydra = {
|
|
enable = true;
|
|
hydraURL = "https://hydra.int.chir.rs/";
|
|
notificationSender = "hydra@chir.rs";
|
|
useSubstitutes = true;
|
|
extraConfig = ''
|
|
<gitea_authorization>
|
|
darkkirb = #gitea_token#
|
|
</gitea_authorization>
|
|
store_uri = s3://nix-cache?scheme=https&endpoint=cache.int.chir.rs&secret-key=/var/lib/hydra/queue-runner/cache-priv-key.pem&multipart-upload=true
|
|
'';
|
|
giteaTokenFile = "/run/secrets/services/hydra/gitea_token";
|
|
};
|
|
services.postgresql.ensureDatabases = [ "hydra" ];
|
|
services.postgresql.ensureUsers = [
|
|
{
|
|
name = "hydra";
|
|
ensurePermissions = {
|
|
"DATABASE hydra" = "ALL PRIVILEGES";
|
|
};
|
|
}
|
|
];
|
|
nix.settings.allowed-uris = [ "https://github.com/" "https://git.chir.rs/" "https://minio.int.chir.rs/" "https://git.neo-layout.org/" ];
|
|
sops.secrets."services/hydra/gitea_token" = { };
|
|
services.nginx.virtualHosts."hydra.int.chir.rs" = {
|
|
listenAddresses = listenIPs;
|
|
sslCertificate = "/var/lib/acme/int.chir.rs/cert.pem";
|
|
sslCertificateKey = "/var/lib/acme/int.chir.rs/key.pem";
|
|
locations."/" = {
|
|
proxyPass = "http://127.0.0.1:3000";
|
|
proxyWebsockets = true;
|
|
};
|
|
extraConfig = listenStatements;
|
|
};
|
|
systemd.services.clean-s3-cache = {
|
|
enable = true;
|
|
description = "Clean up S3 cache";
|
|
serviceConfig = {
|
|
ExecStart = "${clean-cache}/bin/clean-s3-cache.py";
|
|
};
|
|
};
|
|
systemd.timers.clean-s3-cache = {
|
|
enable = true;
|
|
description = "Clean up S3 cache";
|
|
requires = [ "clean-s3-cache.service" ];
|
|
wantedBy = [ "multi-user.target" ];
|
|
timerConfig = {
|
|
OnBootSec = 300;
|
|
OnUnitActiveSec = 604800;
|
|
};
|
|
};
|
|
}
|