12 lines
288 B
Bash
12 lines
288 B
Bash
if test -n "$HOME"; then
|
|
NIX_LINK="$HOME/.nix-userenv"
|
|
|
|
if ! test -L "$NIX_LINK"; then
|
|
echo "creating $NIX_LINK"
|
|
_NIX_DEF_LINK=@localstatedir@/nix/links/current
|
|
ln -s "$_NIX_DEF_LINK" "$NIX_LINK"
|
|
fi
|
|
|
|
export PATH=$NIX_LINK/bin:@prefix@/bin:$PATH
|
|
fi
|