diff options
author | Karel Kočí <cynerd@email.cz> | 2023-04-25 15:17:51 +0200 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2023-04-25 15:17:51 +0200 |
commit | 57f4e3a0d40ba1784ef9d239ac489a4032437612 (patch) | |
tree | d79ed0d44e53627cc73f7f0aa4ce41928871e1cc /nixos/machine | |
parent | 7c7e5963e311dd7207bfd68b6e335a68e7aae844 (diff) | |
download | nixos-personal-57f4e3a0d40ba1784ef9d239ac489a4032437612.tar.gz nixos-personal-57f4e3a0d40ba1784ef9d239ac489a4032437612.tar.bz2 nixos-personal-57f4e3a0d40ba1784ef9d239ac489a4032437612.zip |
nixos: run less jobs in paralel on Ridcully
Diffstat (limited to 'nixos/machine')
-rw-r--r-- | nixos/machine/ridcully.nix | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/nixos/machine/ridcully.nix b/nixos/machine/ridcully.nix index da95cd4..a9e3a42 100644 --- a/nixos/machine/ridcully.nix +++ b/nixos/machine/ridcully.nix @@ -65,5 +65,8 @@ with lib; { dataDir = "/home/cynerd"; configDir = "/home/cynerd/.config/syncthing"; }; + + # Force nix to use less jobs + nix.settings.max-jobs = 8; }; } |