forked from lix-project/lix
Merge branch 'master' of github.com:NixOS/nix
This commit is contained in:
commit
2af5d35fdc
|
@ -26,6 +26,14 @@ $ mkdir /nix
|
||||||
$ chown alice /nix
|
$ chown alice /nix
|
||||||
</screen>
|
</screen>
|
||||||
|
|
||||||
|
The install script will modify the first writable file from amongst
|
||||||
|
<filename>.bash_profile</filename>, <filename>.bash_login</filename>
|
||||||
|
and <filename>.profile</filename> to source
|
||||||
|
<filename>~/.nix-profile/etc/profile.d/nix.sh</filename>. You can set
|
||||||
|
the <command>NIX_INSTALLER_NO_MODIFY_PROFILE</command> environment
|
||||||
|
variable before executing the install script to disable this
|
||||||
|
behaviour.
|
||||||
|
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
|
|
|
@ -89,21 +89,25 @@ if [ -z "$_NIX_INSTALLER_TEST" ]; then
|
||||||
$nix/bin/nix-channel --update nixpkgs
|
$nix/bin/nix-channel --update nixpkgs
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Make the shell source nix.sh during login.
|
|
||||||
p=$HOME/.nix-profile/etc/profile.d/nix.sh
|
|
||||||
|
|
||||||
added=
|
added=
|
||||||
for i in .bash_profile .bash_login .profile; do
|
if [ -z "$NIX_INSTALLER_NO_MODIFY_PROFILE" ]; then
|
||||||
fn="$HOME/$i"
|
|
||||||
if [ -w "$fn" ]; then
|
# Make the shell source nix.sh during login.
|
||||||
if ! grep -q "$p" "$fn"; then
|
p=$HOME/.nix-profile/etc/profile.d/nix.sh
|
||||||
echo "modifying $fn..." >&2
|
|
||||||
echo "if [ -e $p ]; then . $p; fi # added by Nix installer" >> $fn
|
for i in .bash_profile .bash_login .profile; do
|
||||||
|
fn="$HOME/$i"
|
||||||
|
if [ -w "$fn" ]; then
|
||||||
|
if ! grep -q "$p" "$fn"; then
|
||||||
|
echo "modifying $fn..." >&2
|
||||||
|
echo "if [ -e $p ]; then . $p; fi # added by Nix installer" >> $fn
|
||||||
|
fi
|
||||||
|
added=1
|
||||||
|
break
|
||||||
fi
|
fi
|
||||||
added=1
|
done
|
||||||
break
|
|
||||||
fi
|
fi
|
||||||
done
|
|
||||||
|
|
||||||
if [ -z "$added" ]; then
|
if [ -z "$added" ]; then
|
||||||
cat >&2 <<EOF
|
cat >&2 <<EOF
|
||||||
|
|
Loading…
Reference in a new issue