devos/profiles/develop/zsh/functions/i

13 lines
184 B
Text
Raw Normal View History

2019-12-17 00:13:37 +01:00
RED='\033[0;31m'
NC='\033[0m'
# needs one arguement or exit
[[ -n $2 || -z $1 ]] && {
print -u2 \
"${RED}takes one arguement${NC}"
exit 1
}
nix profile install "nixpkgs#$1"