Change nix.maxJobs to nix.settings.max-jobs

This commit is contained in:
Jacob Hinkle 2022-11-14 12:52:56 -05:00
parent 0a9fa4fc03
commit a4974d62fe

View File

@ -200,10 +200,12 @@
system.stateVersion = "22.05"; # Did you read the comment? system.stateVersion = "22.05"; # Did you read the comment?
nix = { nix = {
maxJobs = 8;
gc = { gc = {
automatic = true; automatic = true;
}; };
settings.experimental-features = ["nix-command" "flakes"]; settings = {
experimental-features = ["nix-command" "flakes"];
max-jobs = 4;
};
}; };
} }