add ~/bin to PATH if it exists
svn path=/nixos/trunk/; revision=31235
This commit is contained in:
parent
007d56b69f
commit
b4765401af
@ -62,6 +62,11 @@ export ASPELL_CONF="dict-dir $HOME/.nix-profile/lib/aspell"
|
|||||||
# The setuid wrappers override other bin directories.
|
# The setuid wrappers override other bin directories.
|
||||||
export PATH=@wrapperDir@:$PATH
|
export PATH=@wrapperDir@:$PATH
|
||||||
|
|
||||||
|
# ~/bin if it exists overrides other bin directories.
|
||||||
|
if test -d $HOME/bin; then
|
||||||
|
export PATH=$HOME/bin:$PATH
|
||||||
|
fi
|
||||||
|
|
||||||
# Set up the per-user profile.
|
# Set up the per-user profile.
|
||||||
mkdir -m 0755 -p $NIX_USER_PROFILE_DIR
|
mkdir -m 0755 -p $NIX_USER_PROFILE_DIR
|
||||||
if test "$(stat --printf '%u' $NIX_USER_PROFILE_DIR)" != "$(id -u)"; then
|
if test "$(stat --printf '%u' $NIX_USER_PROFILE_DIR)" != "$(id -u)"; then
|
||||||
|
Loading…
Reference in New Issue
Block a user