11 lines
199 B
Nix
11 lines
199 B
Nix
{ lib, config, ... }:
|
|
|
|
{
|
|
nix.settings = {
|
|
experimental-features = [ "nix-command" "flakes" ];
|
|
download-buffer-size = 536870912; # 512 MB
|
|
cores = 2;
|
|
max-jobs = 1;
|
|
};
|
|
}
|