pub-solar-os/profiles/develop/zsh/functions/i

13 lines
215 B
Plaintext
Raw Normal View History

2019-12-16 23:13:37 +00:00
RED='\033[0;31m'
NC='\033[0m'
# needs one arguement or exit
[[ -n $2 || -z $1 ]] && {
print -u2 \
2019-12-17 22:58:40 +00:00
"${RED}error:${NC} takes exactly one package as an arguement"
2019-12-16 23:13:37 +00:00
2019-12-17 22:58:40 +00:00
return 1
2019-12-16 23:13:37 +00:00
}
nix profile install "nixpkgs#$1"