2019-05-09 18:28:40 +02:00
|
|
|
{ config, lib, ... }:
|
2019-02-26 13:44:40 +01:00
|
|
|
|
|
|
|
# hydra user needs to be manually crated
|
|
|
|
# sudo -u hydra -s
|
|
|
|
# hydra-create-user $USERNAME --password $PASSWORD --role admin
|
|
|
|
|
2019-03-23 02:50:48 +01:00
|
|
|
# https://qfpl.io/posts/nix/starting-simple-hydra/
|
|
|
|
# also for reference a well written hydra config:
|
2019-03-04 10:35:50 +01:00
|
|
|
# https://github.com/NixOS/nixos-org-configurations/blob/master/delft/hydra.nix
|
|
|
|
|
2019-03-20 02:57:59 +01:00
|
|
|
with lib;
|
|
|
|
|
2019-12-14 07:46:00 +01:00
|
|
|
let
|
|
|
|
cacheDir = "/var/cache/hydra";
|
|
|
|
in mkIf (elem "hydra" config.machine.services) {
|
2019-02-26 13:44:40 +01:00
|
|
|
# also take a look at ../conf/nix.nix
|
|
|
|
nix.buildMachines = [
|
|
|
|
{
|
|
|
|
hostName = "localhost";
|
|
|
|
system = "x86_64-linux";
|
|
|
|
supportedFeatures = ["kvm" "nixos-test" "big-parallel" "benchmark"];
|
|
|
|
maxJobs = 8;
|
|
|
|
}
|
|
|
|
];
|
|
|
|
|
2019-10-07 02:48:07 +02:00
|
|
|
services = let
|
|
|
|
cfg = config.machine;
|
|
|
|
domain = (findFirst (s: s.service == "hydra") cfg cfg.vHosts).domain;
|
|
|
|
in {
|
|
|
|
hydra = {
|
|
|
|
enable = true;
|
|
|
|
hydraURL = domain; # externally visible URL
|
|
|
|
listenHost = "localhost";
|
|
|
|
port = 3001;
|
|
|
|
minimumDiskFree = 15;
|
|
|
|
minimumDiskFreeEvaluator = 15;
|
|
|
|
notificationSender = "hydra@mail.${cfg.domain}"; # e-mail of hydra service
|
|
|
|
useSubstitutes = true;
|
|
|
|
debugServer = false;
|
|
|
|
# Hints from hydra-queue-runner:
|
|
|
|
# binary_cache_dir is deprecated and ignored. use store_uri=file:// instead
|
|
|
|
# hydra.conf: binary_cache_secret_key_file is deprecated and ignored. use store_uri=...?secret-key= instead
|
|
|
|
extraConfig = ''
|
|
|
|
max_output_size = 4294967296
|
2019-12-14 07:46:00 +01:00
|
|
|
store_uri = file://${cacheDir}?secret-key=${cfg.secretPath}/hydra_cache&write-nar-listing=1&ls-compression=br&log-compression=br
|
2019-10-07 02:48:07 +02:00
|
|
|
# add ?local-nar-cache= to set nar cache location
|
|
|
|
server_store_uri = https://cache.${cfg.domain}
|
|
|
|
binary_cache_public_uri https://cache.${cfg.domain}
|
|
|
|
upload_logs_to_binary_cache = true
|
|
|
|
'';
|
|
|
|
};
|
2019-03-27 13:48:09 +01:00
|
|
|
|
2019-10-07 02:48:07 +02:00
|
|
|
nix-serve = {
|
|
|
|
enable = true;
|
|
|
|
bindAddress = "0.0.0.0";
|
|
|
|
port = 5000;
|
|
|
|
secretKeyFile = "${cfg.secretPath}/hydra_cache";
|
|
|
|
extraParams = ''
|
|
|
|
# Dont know how to change the store root yet...
|
|
|
|
# --user hydra-queue-runner
|
|
|
|
# --group hydra
|
|
|
|
'';
|
|
|
|
};
|
2019-12-14 07:46:00 +01:00
|
|
|
};
|
|
|
|
systemd.services.nix-serve.environment.NIX_STORE_DIR = cacheDir;
|
2019-02-26 13:44:40 +01:00
|
|
|
}
|