chore: justfile - gc - delete old than 7 days

This commit is contained in:
Ryan Yin
2024-08-12 17:56:46 +08:00
parent e68a43edce
commit c9954c009a

View File

@@ -55,13 +55,13 @@ clean:
gc:
# garbage collect all unused nix store entries
# NOTE: it's a system-wide garbage collection, but it seems won't affect home-manager's gcroot on darwin
sudo nix-collect-garbage --delete-old
sudo nix-collect-garbage --delete-older-than 7d
[group('nix')]
gc-home:
# garbage collect all unused nix store entries(for the user - home-manager on nix-darwin)
# https://github.com/LnL7/nix-darwin/issues/237
nix-collect-garbage --delete-old
nix-collect-garbage --delete-older-than 7d
# Enter a shell session which has all the necessary tools for this flake
[linux]