2019-04-14 18:35:37 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
2019-02-26 13:44:40 +01:00
|
|
|
|
|
|
|
{
|
|
|
|
nix = {
|
|
|
|
maxJobs = 4;
|
|
|
|
buildCores = 1;
|
|
|
|
autoOptimiseStore = true;
|
|
|
|
useSandbox = true;
|
|
|
|
extraOptions = ''
|
|
|
|
build-timeout = 86400 # 24 hours
|
|
|
|
'';
|
2019-04-14 18:35:37 +02:00
|
|
|
binaryCachePublicKeys = [ (lib.fileContents /secret/hydra_cache.pub) ];
|
2019-02-26 13:44:40 +01:00
|
|
|
trustedBinaryCaches = [
|
2019-03-04 10:35:50 +01:00
|
|
|
"https://cache.nixos.org"
|
|
|
|
"https://cache.ophanim.de"
|
2019-02-26 13:44:40 +01:00
|
|
|
];
|
|
|
|
binaryCaches = [
|
2019-03-04 10:35:50 +01:00
|
|
|
"https://cache.nixos.org"
|
|
|
|
"https://cache.ophanim.de"
|
2019-02-26 13:44:40 +01:00
|
|
|
];
|
|
|
|
};
|
|
|
|
}
|