2016-04-10 21:23:16 +00:00
|
|
|
if [ -n "$HOME" ] && [ -n "$USER" ]; then
|
|
|
|
__savedpath="$PATH"
|
|
|
|
export PATH=@coreutils@
|
|
|
|
|
|
|
|
# Set up the per-user profile.
|
|
|
|
# This part should be kept in sync with nixpkgs:nixos/modules/programs/shell.nix
|
|
|
|
|
2016-05-31 11:07:10 +00:00
|
|
|
NIX_LINK=$HOME/.nix-profile
|
2016-04-10 21:23:16 +00:00
|
|
|
|
2016-05-31 11:07:10 +00:00
|
|
|
NIX_USER_PROFILE_DIR=@localstatedir@/nix/profiles/per-user/$USER
|
2016-04-10 21:23:16 +00:00
|
|
|
|
|
|
|
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
|
2012-05-27 09:34:57 +00:00
|
|
|
fi
|
2003-04-09 12:26:48 +00:00
|
|
|
|
2019-05-15 12:30:09 +00:00
|
|
|
# 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
|
2016-04-10 21:23:16 +00:00
|
|
|
|
|
|
|
# Set up environment.
|
|
|
|
# This part should be kept in sync with nixpkgs:nixos/modules/programs/environment.nix
|
2019-05-16 02:04:39 +00:00
|
|
|
export NIX_PROFILES="@localstatedir@/nix/profiles/default $HOME/.nix-profile"
|
2016-04-10 21:23:16 +00:00
|
|
|
|
2016-10-13 15:09:10 +00:00
|
|
|
# Set $NIX_SSL_CERT_FILE so that Nixpkgs applications like curl work.
|
2015-06-08 09:40:35 +00:00
|
|
|
if [ -e /etc/ssl/certs/ca-certificates.crt ]; then # NixOS, Ubuntu, Debian, Gentoo, Arch
|
2016-10-13 15:09:10 +00:00
|
|
|
export NIX_SSL_CERT_FILE=/etc/ssl/certs/ca-certificates.crt
|
2016-02-12 12:26:19 +00:00
|
|
|
elif [ -e /etc/ssl/ca-bundle.pem ]; then # openSUSE Tumbleweed
|
2016-10-13 15:09:10 +00:00
|
|
|
export NIX_SSL_CERT_FILE=/etc/ssl/ca-bundle.pem
|
2015-06-08 09:40:35 +00:00
|
|
|
elif [ -e /etc/ssl/certs/ca-bundle.crt ]; then # Old NixOS
|
2016-10-13 15:09:10 +00:00
|
|
|
export NIX_SSL_CERT_FILE=/etc/ssl/certs/ca-bundle.crt
|
2015-06-08 09:40:35 +00:00
|
|
|
elif [ -e /etc/pki/tls/certs/ca-bundle.crt ]; then # Fedora, CentOS
|
2016-10-13 15:09:10 +00:00
|
|
|
export NIX_SSL_CERT_FILE=/etc/pki/tls/certs/ca-bundle.crt
|
2015-06-08 09:40:35 +00:00
|
|
|
elif [ -e "$NIX_LINK/etc/ssl/certs/ca-bundle.crt" ]; then # fall back to cacert in Nix profile
|
2016-10-13 15:09:10 +00:00
|
|
|
export NIX_SSL_CERT_FILE="$NIX_LINK/etc/ssl/certs/ca-bundle.crt"
|
2015-06-08 09:40:35 +00:00
|
|
|
elif [ -e "$NIX_LINK/etc/ca-bundle.crt" ]; then # old cacert in Nix profile
|
2016-10-13 15:09:10 +00:00
|
|
|
export NIX_SSL_CERT_FILE="$NIX_LINK/etc/ca-bundle.crt"
|
2014-07-29 15:11:54 +00:00
|
|
|
fi
|
2016-04-10 21:23:16 +00:00
|
|
|
|
2019-02-14 18:24:16 +00:00
|
|
|
if [ -n "${MANPATH-}" ]; then
|
2016-07-29 10:00:11 +00:00
|
|
|
export MANPATH="$NIX_LINK/share/man:$MANPATH"
|
|
|
|
fi
|
|
|
|
|
2017-05-07 06:41:19 +00:00
|
|
|
export PATH="$NIX_LINK/bin:$__savedpath"
|
2019-05-16 02:04:39 +00:00
|
|
|
unset __savedpath NIX_LINK NIX_USER_PROFILE_DIR
|
2008-11-20 17:22:42 +00:00
|
|
|
fi
|