aboutsummaryrefslogtreecommitdiff
path: root/.local/bin/,
diff options
context:
space:
mode:
Diffstat (limited to '.local/bin/,')
-rwxr-xr-x.local/bin/,9
1 files changed, 8 insertions, 1 deletions
diff --git a/.local/bin/, b/.local/bin/,
index c9e6545..e1ed37d 100755
--- a/.local/bin/,
+++ b/.local/bin/,
@@ -30,4 +30,11 @@ attributes=$($nixLocate | while read -r attribute; do
done)
attribute=$(printf '%s' "$attributes" | fzf)
-nix-shell --packages "$attribute" --command 'printf "$buildInputs\n"; ls $buildInputs/bin; return';
+nix-shell --packages "$attribute" --command \
+'
+ printf "\n";
+ ls $buildInputs/bin;
+ printf "\n";
+ tree -L 1 $buildInputs;
+ return
+';