nixos/config/nix.nix

23 lines
473 B
Nix
Raw Normal View History

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