Remove $FONTCONFIG_FILE hack from nix-profile.sh

It's no longer needed because Nixpkgs' fontconfig uses
/etc/fonts/fonts.conf as a default, just like other distributions.
This commit is contained in:
Eelco Dolstra 2012-05-22 14:00:08 -04:00
parent e071f87dc5
commit 591aab7e21
1 changed files with 0 additions and 7 deletions

View File

@ -9,10 +9,3 @@ if test -n "$HOME"; then
export PATH=$NIX_LINK/bin:$PATH
fi
# This is a quick hack to make fontconfig-based packages in Nixpkgs
# work out of the box on non-NixOS systems. Of course, we should
# really fix fontconfig...
if test -z "$FONTCONFIG_FILE" -a -e /etc/fonts/fonts.conf; then
export FONTCONFIG_FILE=/etc/fonts/fonts.conf
fi