diff options
author | Alan Pearce | 2022-06-13 09:32:33 +0200 |
---|---|---|
committer | Alan Pearce | 2022-06-13 09:32:33 +0200 |
commit | 64c0f75bd02e332f974b4b501e6691d193386791 (patch) | |
tree | 6288c0733ccc66742d31c4b4abeda54753263c26 /system | |
parent | 0220e076b784d80125687e5361eb11073e43059d (diff) | |
download | nixfiles-64c0f75bd02e332f974b4b501e6691d193386791.tar.lz nixfiles-64c0f75bd02e332f974b4b501e6691d193386791.tar.zst nixfiles-64c0f75bd02e332f974b4b501e6691d193386791.zip |
nix: run two jobs in parallel when auto-upgrading
Diffstat (limited to 'system')
-rw-r--r-- | system/settings/configuration/nix.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/settings/configuration/nix.nix b/system/settings/configuration/nix.nix index 0521ab1e..350cfb06 100644 --- a/system/settings/configuration/nix.nix +++ b/system/settings/configuration/nix.nix @@ -17,7 +17,7 @@ system.autoUpgrade = { enable = true; - flags = [ "--max-jobs" "1" ]; + flags = [ "--max-jobs" "2" ]; }; systemd.services.nixos-upgrade = { script = pkgs.lib.mkForce '' |