diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2019-05-15T12·30+0200 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2019-05-15T12·30+0200 |
commit | b6eb8a2d7e2ea8b083fdac15f537679ffe633183 (patch) | |
tree | 35554008030ab45dfc0842d695d5615bc3aa7c3b /scripts/nix-profile.sh.in | |
parent | 3fd5425f948afa5122ff6b0aad60a6b961b57161 (diff) |
nix-profile: Add all channels to $NIX_PATH
Fixes #2709.
Diffstat (limited to 'scripts/nix-profile.sh.in')
-rw-r--r-- | scripts/nix-profile.sh.in | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/scripts/nix-profile.sh.in b/scripts/nix-profile.sh.in index db03e16ba89a..f3cfa157c769 100644 --- a/scripts/nix-profile.sh.in +++ b/scripts/nix-profile.sh.in @@ -51,10 +51,9 @@ if [ -n "$HOME" ] && [ -n "$USER" ]; then unset __nix_defexpr fi - # 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" + # Append ~/.nix-defexpr/channels to $NIX_PATH so that <nixpkgs> + # paths work when the user has fetched the Nixpkgs channel. + export NIX_PATH=${NIX_PATH:+$NIX_PATH:}$HOME/.nix-defexpr/channels # Set up environment. # This part should be kept in sync with nixpkgs:nixos/modules/programs/environment.nix |