We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6fa79e3 commit 04d0885Copy full SHA for 04d0885
machines/darwin/default.nix
@@ -13,10 +13,15 @@
13
# Allow unfree packages.
14
nixpkgs.config.allowUnfree = true;
15
16
- # Auto garbage collector.
17
- nix.gc = {
18
- automatic = true;
19
- options = "--delete-older-than 14d";
+ # Auto garbage collector and storage optimizer.
+ nix = {
+ gc = {
+ automatic = true;
20
+ options = "--delete-older-than 7d";
21
+ };
22
+ optimise = {
23
24
25
};
26
27
# Enable new nix cli and flakes.
0 commit comments