mirror of
https://github.com/harivansh-afk/nix.git
synced 2026-04-15 10:05:17 +00:00
6 lines
100 B
Bash
6 lines
100 B
Bash
if [[ $# -ne 1 ]]; then
|
|
echo "usage: ni <package>"
|
|
exit 1
|
|
fi
|
|
|
|
exec nix profile add "nixpkgs#$1"
|