From 9c3a069326e6fb8fa8c7332272d680c0182b2e8f Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Mon, 22 Jan 2007 17:17:43 +0000 Subject: [PATCH] * Add .../share/fonts to the font search path. svn path=/nixos/trunk/; revision=7752 --- system/etc.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/system/etc.nix b/system/etc.nix index c1422f1ea9c7..aa93ad33edc2 100644 --- a/system/etc.nix +++ b/system/etc.nix @@ -89,12 +89,15 @@ import ../helpers/make-etc.nix { "~/.fonts" # - the user's current profile "~/.nix-profile/lib/X11/fonts" + "~/.nix-profile/share/fonts" # - the default profile "/nix/var/nix/profiles/default/lib/X11/fonts" + "/nix/var/nix/profiles/default/share/fonts" # - a few statically built locations pkgs.xorg.fontbhttf pkgs.xorg.fontbh100dpi pkgs.xorg.fontbhlucidatypewriter100dpi + pkgs.ttf_bitstream_vera pkgs.freefont_ttf ]; buildInputs = [pkgs.libxslt];