summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorseth <[email protected]>2023-11-08 15:50:17 -0500
committerseth <[email protected]>2023-11-08 15:50:17 -0500
commit371721236136d913d5a13f12b29039393a10d1de (patch)
tree1518a36ae1ec38a38cdc1872d6d6c219124c92b1
parent5b8776bf89d2e5ae9e19f1bd44ebfbcff1ffc97d (diff)
nixgc: dont concat meta
-rw-r--r--pkgs/nixgc/default.nix9
1 files changed, 6 insertions, 3 deletions
diff --git a/pkgs/nixgc/default.nix b/pkgs/nixgc/default.nix
index d13614a..9e25bd7 100644
--- a/pkgs/nixgc/default.nix
+++ b/pkgs/nixgc/default.nix
@@ -16,7 +16,10 @@ writeShellApplication {
nix profile wipe-history --profile "$profile" "$@"
done
'';
-}
-// {
- meta.platforms = lib.platforms.linux;
+
+ meta = with lib; {
+ description = "nix-collect-garbage, but with nix profile";
+ maintainers = [maintainers.getchoo];
+ platforms = platforms.linux;
+ };
}