diff options
| -rw-r--r-- | nix.nix | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -0,0 +1,11 @@ +{ config, lib, pkgs, ... }: +{ + nix = { + gc = { + automatic = true; + dates = "daily"; + options = "--delete-older-than 3"; + }; + settings.auto-optimise-store = true; + }; +} |
