summaryrefslogtreecommitdiff
path: root/pkgs/nixgc/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/nixgc/default.nix')
-rw-r--r--pkgs/nixgc/default.nix25
1 files changed, 0 insertions, 25 deletions
diff --git a/pkgs/nixgc/default.nix b/pkgs/nixgc/default.nix
deleted file mode 100644
index 9e25bd7..0000000
--- a/pkgs/nixgc/default.nix
+++ /dev/null
@@ -1,25 +0,0 @@
-# this is a shell script that uses the new nix cli to emulate
-# nix-collect-garbage
-{
- lib,
- writeShellApplication,
- nix,
- fd,
-}:
-writeShellApplication {
- name = "nixgc";
-
- runtimeInputs = [nix fd];
-
- text = ''
- fd . /nix/var/nix/profiles /home/*/.local/state/nix/profiles -d 3 -t symlink -E '*-link' | while read -r profile; do
- nix profile wipe-history --profile "$profile" "$@"
- done
- '';
-
- meta = with lib; {
- description = "nix-collect-garbage, but with nix profile";
- maintainers = [maintainers.getchoo];
- platforms = platforms.linux;
- };
-}