main
nix 22 lines 365 Bytes
Raw
1 {
2 imports = [
3 ../production.nix
4 ];
5
6 # 8 Cores, 16 GB RAM, 256 GB Disk
7 # split into 4 jobs with 2C/4G
8 nix.settings = {
9 cores = 2;
10 max-jobs = 4;
11 system-features = [ ];
12 };
13
14 services.fast-nix-gc = {
15 ensureFree = "100G"; # per half-hour
16 startCalendarInterval = [
17 {
18 Minute = 45; # second interval
19 }
20 ];
21 };
22 }