Skip to content

Commit

Permalink
nix-profile.sh: Add the Nixpkgs channel to $NIX_PATH
Browse files Browse the repository at this point in the history
  • Loading branch information
edolstra committed Jan 15, 2014
1 parent f5e5793 commit bf0ad8a
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion scripts/nix-profile.sh.in
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,15 @@ if test -n "$HOME"; then
@coreutils@/ln -s "$_NIX_DEF_LINK" "$NIX_LINK"
fi

export PATH=$NIX_LINK/bin:$PATH

# Subscribe the root user to the Nixpkgs channel by default.
if [ ! -e $HOME/.nix-channels ]; then
echo "http://nixos.org/channels/nixpkgs-unstable nixpkgs" > $HOME/.nix-channels
fi

export PATH=$NIX_LINK/bin:$PATH
# Append ~/.nix-defexpr/channels/nixpkgs to $NIX_PATH so that
# <nixpkgs> paths work when the user has fetched the Nixpkgs
# channel.
export NIX_PATH=${NIX_PATH:+$NIX_PATH:}nixpkgs=$HOME/.nix-defexpr/channels/nixpkgs
fi

0 comments on commit bf0ad8a

Please sign in to comment.