|
1
|
{ |
|
2
|
imports = [ |
|
3
|
../production.nix |
|
4
|
]; |
|
5
|
|
|
6
|
# 8 Cores, 24 GB RAM, 1 TB Disk |
|
7
|
# split into 2 jobs with 4C/12G |
|
8
|
nix.settings = { |
|
9
|
cores = 4; |
|
10
|
max-jobs = 2; |
|
11
|
system-features = [ "big-parallel" ]; |
|
12
|
}; |
|
13
|
|
|
14
|
services.fast-nix-gc.ensureFree = "200G"; # per hour |
|
15
|
} |