1
0
Fork 0
forked from emily/nixfiles
nixfiles-emily/config/services/hydra.nix

70 lines
2.1 KiB
Nix
Raw Normal View History

2024-05-09 20:21:49 +02:00
{ config, ... }: {
2024-05-10 20:09:39 +02:00
sops.secrets."services/hydra/signKey" = {
owner = "hydra-queue-runner";
sopsFile = ../../secrets/services/hydra.yaml;
};
2024-05-09 20:21:49 +02:00
services.hydra = {
enable = true;
hydraURL = "https://hydra.kyouma.net";
listenHost = "localhost";
notificationSender = "hydra@hydra.kyouma.net";
minimumDiskFree = 2;
useSubstitutes = true;
2024-05-10 20:09:39 +02:00
extraConfig = ''
store_uri = file:///var/cache/hydra?secret-key=${config.sops.secrets."services/hydra/signKey".path}&write-nar-listing=1&ls-compression=xz&log-compression=xz&want-mass-query=1&priority=41
upload_logs_to_binary_cache = true
server_store_uri = https://cache.kyouma.net
binary_cache_public_uri = https://cache.kyouma.net
'';
2024-05-09 20:21:49 +02:00
};
nix.buildMachines = [
{
hostName = "localhost";
2024-05-10 20:09:39 +02:00
sshUser = "build";
2024-05-09 20:21:49 +02:00
maxJobs = 40;
speedFactor = 40;
systems = [ "x86_64-linux" "x86_64-darwin" ];
supportedFeatures = [ "nixos-test" "benchmark" "big-parallel" "kvm" ];
2024-05-10 20:09:39 +02:00
sshKey = "/var/lib/hydra/id_ed25519";
2024-05-09 20:21:49 +02:00
}
{
hostName = "integra.kyouma.net";
sshUser = "build";
maxJobs = 4;
speedFactor = 8;
systems = [ "aarch64-linux" "aarch64-darwin" ];
supportedFeatures = [ "nixos-test" "benchmark" "big-parallel" "kvm" ];
2024-05-10 14:49:52 +02:00
sshKey = "/var/lib/hydra/id_ed25519";
2024-05-09 20:21:49 +02:00
}
];
2024-05-10 20:09:39 +02:00
nix.settings = {
allowed-uris = [
"github:"
"git+https://"
"git+ssh://"
];
};
2024-05-09 20:21:49 +02:00
programs.ssh = {
knownHosts."integra.kyouma.net".publicKey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIIBwEQiSfaDrUAwgul4mktusBPcIVxI4pLNDh9DPopVU";
};
2024-05-10 20:09:39 +02:00
kyouma.nginx.virtualHosts = {
"hydra.kyouma.net" = {
locations."/" = {
proxyPass = "http://localhost:3000";
};
};
"cache.kyouma.net" = {
root = "/var/cache/hydra";
locations."= /" = {
return = ''200 'Public key:\n\ncache.kyouma.net:Frjwu4q1rnwE/MnSTmX9yx86GNA/z3p/oElGvucLiZg='
'';
extraConfig = ''
types { } default_type "text/plain; charset=utf-8";
'';
};
2024-05-09 20:21:49 +02:00
};
};
2024-05-10 20:09:39 +02:00
security.acme.certs."cache.kyouma.net" = {};
2024-05-09 20:21:49 +02:00
security.acme.certs."hydra.kyouma.net" = {};
}