1
1
mirror of https://github.com/divnix/digga.git synced 2024-12-21 15:11:58 +03:00
digga/profiles/develop/zsh/functions/i
2019-12-17 15:58:40 -07:00

13 lines
215 B
Plaintext

RED='\033[0;31m'
NC='\033[0m'
# needs one arguement or exit
[[ -n $2 || -z $1 ]] && {
print -u2 \
"${RED}error:${NC} takes exactly one package as an arguement"
return 1
}
nix profile install "nixpkgs#$1"