darwin01: disable auto-optimise-store
This commit is contained in:
parent
8661f3ff25
commit
6b273a3ec0
2 changed files with 4 additions and 1 deletions
|
@ -7,6 +7,9 @@
|
|||
inputs.self.darwinModules.community-builder
|
||||
];
|
||||
|
||||
# https://github.com/NixOS/nix/issues/7273
|
||||
nix.settings.auto-optimise-store = false;
|
||||
|
||||
nix.settings.sandbox = "relaxed";
|
||||
nix.settings.extra-platforms = [ "x86_64-darwin" ];
|
||||
|
||||
|
|
|
@ -14,7 +14,7 @@ in
|
|||
];
|
||||
|
||||
# Hard-link duplicated files
|
||||
settings.auto-optimise-store = true;
|
||||
settings.auto-optimise-store = pkgs.lib.mkDefault true;
|
||||
|
||||
# auto-free the /nix/store
|
||||
settings.min-free = asGB 10;
|
||||
|
|
Loading…
Add table
Reference in a new issue