Source nix profile if present

This commit is contained in:
Andrew R. M 2019-04-22 14:44:26 +00:00
parent dc61e491d9
commit 85efa1e737

View File

@ -36,3 +36,7 @@ fi
export HISTSIZE=5000 export HISTSIZE=5000
export HISTFILE="$HOME/.history/sh" export HISTFILE="$HOME/.history/sh"
export HISTFILESIZE=10000 export HISTFILESIZE=10000
if [ -r "$HOME/.nix-profile/etc/profile.d/nix.sh" ]; then
. "$HOME/.nix-profile/etc/profile.d/nix.sh"
fi