diff options
| author | Baitinq <[email protected]> | 2023-05-11 18:18:18 +0200 |
|---|---|---|
| committer | Baitinq <[email protected]> | 2023-05-11 18:18:18 +0200 |
| commit | f327f7e74ef2ef06a184da5968f2f8df60071799 (patch) | |
| tree | fd609e2416cde37be0e1b4934ec32eeb42e24808 | |
| parent | Update (diff) | |
| download | nixos-config-f327f7e74ef2ef06a184da5968f2f8df60071799.tar.gz nixos-config-f327f7e74ef2ef06a184da5968f2f8df60071799.tar.bz2 nixos-config-f327f7e74ef2ef06a184da5968f2f8df60071799.zip | |
Nix: Add auto-allocate-uuids experimental feature
| -rw-r--r-- | hosts/configuration.nix | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/hosts/configuration.nix b/hosts/configuration.nix index f6f73a6..577b4ad 100644 --- a/hosts/configuration.nix +++ b/hosts/configuration.nix @@ -212,8 +212,9 @@ }; package = pkgs.nixVersions.stable; settings = { - experimental-features = [ "nix-command" "flakes" "ca-derivations" ]; + experimental-features = [ "nix-command" "flakes" "ca-derivations" "auto-allocate-uids" ]; auto-optimise-store = true; + auto-allocate-uids = true; max-jobs = "auto"; cores = 0; }; |