mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
f6136d06ff
.ttc fonts are used by noto-fonts-cjk
67 lines
1.6 KiB
Nix
67 lines
1.6 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
|
|
cfg = config.fonts.fontDir;
|
|
|
|
x11Fonts = pkgs.runCommand "X11-fonts" { preferLocalBuild = true; } ''
|
|
mkdir -p "$out/share/X11/fonts"
|
|
font_regexp='.*\.\(ttf\|ttc\|otf\|pcf\|pfa\|pfb\|bdf\)\(\.gz\)?'
|
|
find ${toString config.fonts.fonts} -regex "$font_regexp" \
|
|
-exec ln -sf -t "$out/share/X11/fonts" '{}' \;
|
|
cd "$out/share/X11/fonts"
|
|
${optionalString cfg.decompressFonts ''
|
|
${pkgs.gzip}/bin/gunzip -f *.gz
|
|
''}
|
|
${pkgs.xorg.mkfontscale}/bin/mkfontscale
|
|
${pkgs.xorg.mkfontdir}/bin/mkfontdir
|
|
cat $(find ${pkgs.xorg.fontalias}/ -name fonts.alias) >fonts.alias
|
|
'';
|
|
|
|
in
|
|
|
|
{
|
|
|
|
options = {
|
|
fonts.fontDir = {
|
|
|
|
enable = mkOption {
|
|
type = types.bool;
|
|
default = false;
|
|
description = ''
|
|
Whether to create a directory with links to all fonts in
|
|
<filename>/run/current-system/sw/share/X11/fonts</filename>.
|
|
'';
|
|
};
|
|
|
|
decompressFonts = mkOption {
|
|
type = types.bool;
|
|
default = config.programs.xwayland.enable;
|
|
description = ''
|
|
Whether to decompress fonts in
|
|
<filename>/run/current-system/sw/share/X11/fonts</filename>.
|
|
'';
|
|
};
|
|
|
|
};
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
# This is enough to make a symlink because the xserver
|
|
# module already links all /share/X11 paths.
|
|
environment.systemPackages = [ x11Fonts ];
|
|
|
|
services.xserver.filesSection = ''
|
|
FontPath "${x11Fonts}/share/X11/fonts"
|
|
'';
|
|
|
|
};
|
|
|
|
imports = [
|
|
(mkRenamedOptionModule [ "fonts" "enableFontDir" ] [ "fonts" "fontDir" "enable" ])
|
|
];
|
|
|
|
}
|