591aab7e21
It's no longer needed because Nixpkgs' fontconfig uses /etc/fonts/fonts.conf as a default, just like other distributions.
11 lines
294 B
Bash
11 lines
294 B
Bash
if test -n "$HOME"; then
|
|
NIX_LINK="$HOME/.nix-profile"
|
|
|
|
if ! test -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
|
|
|
|
export PATH=$NIX_LINK/bin:$PATH
|
|
fi
|