forked from lix-project/lix
aac14222f5
Commit 6a214f3e06
copied most of the Nix
shell initialisation code from NixOS to nix-profile.sh; however, that
code assumes a multi-user install and is Linux-specific (e.g. it calls
the "stat" command). So go back to the simple single-user version.
Fixes #49.
18 lines
542 B
Bash
18 lines
542 B
Bash
if test -n "$HOME"; then
|
|
NIX_LINK="$HOME/.nix-profile"
|
|
|
|
# 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"
|
|
fi
|
|
|
|
# Subscribe the root user to the Nixpkgs channel by default.
|
|
if [ ! -e $HOME/.nix-channels ]; then
|
|
echo "http://nixos.org/releases/nixos/channels/nixpkgs-unstable nixpkgs" > $HOME/.nix-channels
|
|
fi
|
|
|
|
export PATH=$NIX_LINK/bin:$PATH
|
|
fi
|