2014-07-29 17:11:54 +02:00
|
|
|
if [ -n "$HOME" ]; then
|
2012-09-13 23:48:19 +02:00
|
|
|
NIX_LINK="$HOME/.nix-profile"
|
2003-04-09 14:26:48 +02:00
|
|
|
|
2012-09-13 23:48:19 +02:00
|
|
|
# Set the default profile.
|
|
|
|
if ! [ -L "$NIX_LINK" ]; then
|
|
|
|
echo "creating $NIX_LINK" >&2
|
|
|
|
_NIX_DEF_LINK=@localstatedir@/nix/profiles/default
|
|
|
|
@coreutils@/ln -s "$_NIX_DEF_LINK" "$NIX_LINK"
|
2004-01-05 12:18:59 +01:00
|
|
|
fi
|
2012-05-27 11:34:57 +02:00
|
|
|
|
2014-02-26 15:24:48 +01:00
|
|
|
export PATH=$NIX_LINK/bin:$NIX_LINK/sbin:$PATH
|
2014-01-15 14:34:49 +01:00
|
|
|
|
2014-12-10 11:35:05 +01:00
|
|
|
# Subscribe the user to the Nixpkgs channel by default.
|
2012-09-13 23:48:19 +02:00
|
|
|
if [ ! -e $HOME/.nix-channels ]; then
|
2014-12-10 11:35:56 +01:00
|
|
|
echo "https://nixos.org/channels/nixpkgs-unstable nixpkgs" > $HOME/.nix-channels
|
2012-05-27 11:34:57 +02:00
|
|
|
fi
|
2003-04-09 14:26:48 +02:00
|
|
|
|
2014-01-15 14:34:49 +01:00
|
|
|
# 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
|
2014-07-29 17:11:54 +02:00
|
|
|
|
|
|
|
# Set $SSL_CERT_FILE so that Nixpkgs applications like curl work.
|
|
|
|
if [ -e /etc/ssl/certs/ca-bundle.crt ]; then # Fedora, NixOS
|
|
|
|
export SSL_CERT_FILE=/etc/ssl/certs/ca-bundle.crt
|
|
|
|
elif [ -e /etc/ssl/certs/ca-certificates.crt ]; then # Ubuntu, Debian
|
|
|
|
export SSL_CERT_FILE=/etc/ssl/certs/ca-certificates.crt
|
|
|
|
elif [ -e "$NIX_LINK/etc/ca-bundle.crt" ]; then # fall back to Nix profile
|
|
|
|
export SSL_CERT_FILE="$NIX_LINK/etc/ca-bundle.crt"
|
|
|
|
fi
|
2008-11-20 18:22:42 +01:00
|
|
|
fi
|