os/pkgs/p.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
123 B
Nix
Raw Normal View History

2023-11-01 13:40:29 +00:00
self:
with self; ''
PKGS=""
for pkg in "$@"
do
PKGS="$PKGS nixpkgs#$pkg"
done
${nix}/bin/nix shell $PKGS
''