about summary refs log tree commit diff
path: root/scripts/nix-profile.sh.in
blob: 7f19f801484cabbde12d7e6af06d60b93b46d0c5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
if test -n "$HOME"; then
    NIX_LINK="$HOME/.nix-profile"

    if ! test -L "$NIX_LINK"; then
        echo "creating $NIX_LINK"
        _NIX_DEF_LINK=@localstatedir@/nix/profiles/default
        ln -s "$_NIX_DEF_LINK" "$NIX_LINK"
    fi

    export PATH=$NIX_LINK/bin:@prefix@/bin:$PATH
fi