nixos/config/nix.nix

25 lines
701 B
Nix

{ config, pkgs, ... }:
{
nix = {
maxJobs = 4;
buildCores = 1;
autoOptimiseStore = true;
useSandbox = true;
extraOptions = ''
build-timeout = 86400 # 24 hours
'';
sshServe.enable = true;
sshServe.keys = ( if config.networking.hostName == "Ophanim" then [ (builtins.replaceStrings ["\n"] [""] (builtins.readFile /secret/nix-ssh.pub)) ] else []);
binaryCachePublicKeys = [ (builtins.replaceStrings ["\n"] [""] (builtins.readFile /secret/hydra_cache.pub)) ];
trustedBinaryCaches = [
"https://cache.nixos.org"
"https://cache.ophanim.de"
];
binaryCaches = [
"https://cache.nixos.org"
"https://cache.ophanim.de"
];
};
}