summaryrefslogtreecommitdiff
path: root/pkgs/nixgc/package.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/nixgc/package.nix')
-rw-r--r--pkgs/nixgc/package.nix7
1 files changed, 5 insertions, 2 deletions
diff --git a/pkgs/nixgc/package.nix b/pkgs/nixgc/package.nix
index 9e25bd7..9d8e230 100644
--- a/pkgs/nixgc/package.nix
+++ b/pkgs/nixgc/package.nix
@@ -9,7 +9,10 @@
writeShellApplication {
name = "nixgc";
- runtimeInputs = [nix fd];
+ 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
@@ -19,7 +22,7 @@ writeShellApplication {
meta = with lib; {
description = "nix-collect-garbage, but with nix profile";
- maintainers = [maintainers.getchoo];
+ maintainers = [ maintainers.getchoo ];
platforms = platforms.linux;
};
}