aboutsummaryrefslogtreecommitdiff
path: root/scripts/nix-profile.sh.in
diff options
context:
space:
mode:
authorEelco Dolstra <edolstra@gmail.com>2019-10-09 19:50:46 +0200
committerEelco Dolstra <edolstra@gmail.com>2019-10-09 23:35:02 +0200
commitc9159f86cc9a2fc07e2ab1217c2d8a8824123df4 (patch)
tree295a26be9853462cfd65f69ae26a17049850a91d /scripts/nix-profile.sh.in
parent61a6176acaa8522cbcf091a34a663ef45307fef7 (diff)
nix-env: Create ~/.nix-defexpr automatically
Diffstat (limited to 'scripts/nix-profile.sh.in')
-rw-r--r--scripts/nix-profile.sh.in11
1 files changed, 0 insertions, 11 deletions
diff --git a/scripts/nix-profile.sh.in b/scripts/nix-profile.sh.in
index ed4d1a639..e15f7cd46 100644
--- a/scripts/nix-profile.sh.in
+++ b/scripts/nix-profile.sh.in
@@ -7,17 +7,6 @@ if [ -n "$HOME" ] && [ -n "$USER" ]; then
NIX_USER_PROFILE_DIR=@localstatedir@/nix/profiles/per-user/$USER
- if [ -w "$HOME" ]; then
- # Set up a default Nix expression from which to install stuff.
- __nix_defexpr="$HOME"/.nix-defexpr
- [ -L "$__nix_defexpr" ] && rm -f "$__nix_defexpr"
- mkdir -m 0755 -p "$__nix_defexpr"
- if [ "$USER" != root ] && [ ! -L "$__nix_defexpr"/channels_root ]; then
- ln -s @localstatedir@/nix/profiles/per-user/root/channels "$__nix_defexpr"/channels_root
- fi
- unset __nix_defexpr
- fi
-
# 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