Fresh repo without sensitive data.
This commit is contained in:
commit
9003080a64
44 changed files with 2039 additions and 0 deletions
21
config/nix.nix
Normal file
21
config/nix.nix
Normal file
|
@ -0,0 +1,21 @@
|
|||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
nix = {
|
||||
maxJobs = 4;
|
||||
buildCores = 1;
|
||||
autoOptimiseStore = true;
|
||||
sshServe.enable = false;
|
||||
#sshServe.keys = [];
|
||||
useSandbox = true;
|
||||
extraOptions = ''
|
||||
build-timeout = 86400 # 24 hours
|
||||
'';
|
||||
trustedBinaryCaches = [
|
||||
"http://cache.nixos.org"
|
||||
];
|
||||
binaryCaches = [
|
||||
"http://cache.nixos.org"
|
||||
];
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue