2019-08-28 15:56:19 +02:00
|
|
|
{ config, lib, ... }:
|
2019-02-26 13:44:40 +01:00
|
|
|
|
|
|
|
{
|
|
|
|
nix = {
|
|
|
|
maxJobs = 4;
|
|
|
|
buildCores = 1;
|
|
|
|
autoOptimiseStore = true;
|
|
|
|
useSandbox = true;
|
|
|
|
extraOptions = ''
|
|
|
|
build-timeout = 86400 # 24 hours
|
|
|
|
'';
|
2019-08-28 15:56:19 +02:00
|
|
|
binaryCachePublicKeys = [ (lib.fileContents "${config.machine.secretPath}/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
|
|
|
];
|
|
|
|
};
|
|
|
|
}
|