nix-config/hosts/hydra/hydra.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

93 lines
2.4 KiB
Nix
Raw Normal View History

2022-05-07 00:50:01 +02:00
{ hostRegistry, config, lib, pkgs, ... }:
2022-06-22 00:16:03 +02:00
{
2021-03-12 21:45:12 +01:00
nix = {
extraOptions = ''
allowed-uris = http:// https:// ssh://
2021-03-12 21:45:12 +01:00
'';
trustedUsers = [ "hydra" "root" ];
2022-06-23 20:22:23 +02:00
buildMachines = [{
hostName = "localhost";
system = lib.concatStringsSep "," ([
2022-06-23 20:22:23 +02:00
pkgs.system
"i686-linux"
] ++ config.boot.binfmt.emulatedSystems);
2022-05-05 22:34:51 +02:00
supportedFeatures = [ "big-parallel" "benchmark" "kvm" "nixos-test" ];
2022-05-07 01:01:02 +02:00
inherit (config.nix) maxJobs;
2022-06-23 20:22:23 +02:00
# } {
# hostName = "client@dacbert.hq.c3d2.de";
# system = lib.concatStringsSep "," [
# "aarch64-linux" "armv6l-linux" "armv7l-linux"
# ];
# supportedFeatures = [ "kvm" "benchmark" "nixos-test" ];
# maxJobs = 1;
}];
daemonCPUSchedPolicy = "idle";
daemonIOSchedClass = "idle";
daemonIOSchedPriority = 7;
2021-03-12 21:45:12 +01:00
};
2022-06-23 20:22:23 +02:00
services = {
hydra-dev = {
enable = true;
hydraURL = "https://hydra.hq.c3d2.de";
logo = ./c3d2.svg;
minimumDiskFree = 1;
minimumDiskFreeEvaluator = 1;
notificationSender = "hydra@spam.works";
useSubstitutes = true;
extraConfig =
let
key = config.sops.secrets."nix-serve/secretKey".path;
in
''
binary_cache_secret_key_file = ${key}
evaluator_workers = 1
2022-06-23 20:22:23 +02:00
evaluator_max_memory_size = 2048
max_output_size = 4294967296
store_uri = auto?secret-key=${key}&write-nar-listing=1&ls-compression=zstd&log-compression=zstd
upload_logs_to_binary_cache = true
'';
};
nginx =
let
hydraVhost = {
forceSSL = true;
enableACME = true;
locations."/".proxyPass =
"http://localhost:${toString config.services.hydra.port}";
};
in
{
enable = true;
virtualHosts = {
"hydra.hq.c3d2.de" = hydraVhost // {
default = true;
};
"hydra.serv.zentralwerk.org" = hydraVhost;
# TODO: remove
"nix-serve.hq.c3d2.de" = hydraVhost;
};
};
2021-03-12 21:45:12 +01:00
};
2022-06-12 17:26:32 +02:00
2022-06-23 20:22:23 +02:00
sops.secrets."nix-serve/secretKey".mode = "0444";
2022-05-07 00:50:01 +02:00
systemd.services = {
hydra-evaluator.serviceConfig = {
CPUWeight = 2;
MemoryHigh = "96G";
MemoryMax = "96G";
MemorySwapMax = "96G";
2022-05-07 00:50:01 +02:00
};
2022-06-13 15:48:05 +02:00
nix-daemon.serviceConfig = {
2022-06-09 17:45:23 +02:00
LimitNOFILE = lib.mkForce 8192;
CPUWeight = 5;
2022-06-23 22:10:06 +02:00
MemoryHigh = "64G";
MemoryMax = "64G";
MemorySwapMax = "64G";
2022-06-12 17:26:32 +02:00
};
};
2021-03-12 21:45:12 +01:00
}