summaryrefslogtreecommitdiff
path: root/pkgs/nixgc
diff options
context:
space:
mode:
authorseth <[email protected]>2024-07-06 04:02:35 -0400
committerseth <[email protected]>2024-07-06 04:12:41 -0400
commit8875ad5fb466944667e5171035aa8f5c01675e93 (patch)
treee453699bbfcc7b8fb566490c8930e60c6adac07b /pkgs/nixgc
parentc3ad734168ea13fde1e2f6ec3fbdccf78f72aada (diff)
tree-wide: alejandra -> nixfmt
Diffstat (limited to 'pkgs/nixgc')
-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;
};
}