Migrate deprecated options

This commit is contained in:
Sandro - 2022-12-16 21:56:22 +01:00
parent c2d21103f8
commit eb39c1d403
Signed by: sandro
GPG Key ID: 3AF5A43A3EECC2E5
3 changed files with 6 additions and 7 deletions

View File

@ -13,9 +13,9 @@
nixpkgs.config.allowUnfree = true;
nix = {
buildCores = 4;
maxJobs = 4;
nix.settings = {
cores = 4;
max-jobs = 4;
};
sops = {

View File

@ -24,6 +24,5 @@
swapDevices = [ ];
nix.maxJobs = lib.mkDefault 4;
powerManagement.cpuFreqGovernor = lib.mkDefault "powersave";
}

View File

@ -85,9 +85,9 @@
pkgs.makeModulesClosure (x // { allowMissing = true; });
};
nix = {
buildCores = 4;
maxJobs = 2;
nix.settings = {
cores = 4;
max-jobs = 2;
};
sops = {