about summary refs log blame commit diff
path: root/scripts/nix-profile.sh.in
blob: 6442e3efb1a53c2b9296eb7c5014003d38e18179 (plain) (tree)
1
2
3
4
5
6
7
8
9
                        
                                 
 
                                  
                                     
                                                          
                                                      
      
 

                                                
if test -n "$HOME"; then
    NIX_LINK="$HOME/.nix-profile"

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

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