Disable auto-optimisation of nix store

This commit is contained in:
James Eversole 2023-06-26 12:43:25 -05:00
parent 92aed5c025
commit a1f59f6507

View File

@ -42,7 +42,7 @@
buildMachines = [ ]; buildMachines = [ ];
distributedBuilds = false; distributedBuilds = false;
settings = { settings = {
auto-optimise-store = true; auto-optimise-store = false; # https://github.com/NixOS/nix/issues/7273
experimental-features = [ "nix-command" "flakes" ]; experimental-features = [ "nix-command" "flakes" ];
}; };
}; };