summaryrefslogtreecommitdiffstats
path: root/nixos/modules/config/fonts
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2014-09-28 15:11:10 +0200
committerVladimír Čunát <vcunat@gmail.com>2014-10-05 17:05:27 +0200
commite4436ad8417d8a8b1188bdc0b8cee68211e8f8e3 (patch)
treef1e0b1c787f823bc0095724acbabcc12b8de3b56 /nixos/modules/config/fonts
parentf7e83a32ad3a8ba10f1d51c300e6744c06be867c (diff)
FONTCONFIG_FILE: remove setters to /etc/fonts/fonts.conf
Any reasonably new version of fontconfig does search that path by default, and setting this globally causes problems, as 2.10 and 2.11 need incompatible configs. Tested: slim+xfce desktop, chrootenv-ed steam. I have no idea why we were setting the global variable; e.g., neither Fedora nor Ubuntu does that.
Diffstat (limited to 'nixos/modules/config/fonts')
-rw-r--r--nixos/modules/config/fonts/fontconfig.nix5
1 files changed, 0 insertions, 5 deletions
diff --git a/nixos/modules/config/fonts/fontconfig.nix b/nixos/modules/config/fonts/fontconfig.nix
index cf70ca264d6a..7516d7ddf1a6 100644
--- a/nixos/modules/config/fonts/fontconfig.nix
+++ b/nixos/modules/config/fonts/fontconfig.nix
@@ -47,11 +47,6 @@ with lib;
</fontconfig>
'';
- # FIXME: This variable is no longer needed, but we'll keep it
- # around for a while for applications linked against old
- # fontconfig builds.
- environment.variables.FONTCONFIG_FILE = "/etc/fonts/fonts.conf";
-
environment.systemPackages = [ pkgs.fontconfig ];
};