2014-04-14 14:26:48 +00:00
|
|
|
{ config, lib, pkgs, ... }:
|
2013-06-27 11:12:45 +00:00
|
|
|
|
2014-04-14 14:26:48 +00:00
|
|
|
with lib;
|
2013-06-27 11:12:45 +00:00
|
|
|
|
|
|
|
let
|
|
|
|
|
2016-05-25 17:10:16 +00:00
|
|
|
x11Fonts = pkgs.runCommand "X11-fonts" { } ''
|
|
|
|
mkdir -p "$out/share/X11-fonts"
|
|
|
|
find ${toString config.fonts.fonts} \
|
|
|
|
\( -name fonts.dir -o -name '*.ttf' -o -name '*.otf' \) \
|
|
|
|
-exec ln -sf -t "$out/share/X11-fonts" '{}' \;
|
|
|
|
cd "$out/share/X11-fonts"
|
|
|
|
rm -f fonts.dir fonts.scale fonts.alias
|
|
|
|
${pkgs.xorg.mkfontdir}/bin/mkfontdir
|
|
|
|
${pkgs.xorg.mkfontscale}/bin/mkfontscale
|
|
|
|
cat $(find ${pkgs.xorg.fontalias}/ -name fonts.alias) >fonts.alias
|
|
|
|
'';
|
2013-06-27 11:12:45 +00:00
|
|
|
|
|
|
|
in
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
options = {
|
|
|
|
|
|
|
|
fonts = {
|
|
|
|
|
|
|
|
enableFontDir = mkOption {
|
|
|
|
default = false;
|
|
|
|
description = ''
|
|
|
|
Whether to create a directory with links to all fonts in
|
|
|
|
<filename>/run/current-system/sw/share/X11-fonts</filename>.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf config.fonts.enableFontDir {
|
|
|
|
|
|
|
|
environment.systemPackages = [ x11Fonts ];
|
|
|
|
|
2016-05-25 17:10:16 +00:00
|
|
|
environment.pathsToLink = [ "/share/X11-fonts" ];
|
|
|
|
|
2013-06-27 11:12:45 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|