2016-07-16 22:11:42 +02:00
|
|
|
|
/*
|
|
|
|
|
|
2020-08-13 20:04:10 +02:00
|
|
|
|
Configuration files are linked to /etc/fonts/conf.d/
|
2016-07-16 22:11:42 +02:00
|
|
|
|
|
|
|
|
|
This module generates a package containing configuration files and link it in /etc/fonts.
|
|
|
|
|
|
|
|
|
|
Fontconfig reads files in folder name / file name order, so the number prepended to the configuration file name decide the order of parsing.
|
|
|
|
|
Low number means high priority.
|
|
|
|
|
|
2023-03-23 19:56:41 +01:00
|
|
|
|
NOTE: Please take extreme care when adjusting the default settings of this module.
|
|
|
|
|
People care a lot, and I mean A LOT, about their font rendering, and you will be
|
|
|
|
|
The Person That Broke It if it changes in a way people don't like.
|
|
|
|
|
|
|
|
|
|
See prior art:
|
|
|
|
|
- https://github.com/NixOS/nixpkgs/pull/194594
|
|
|
|
|
- https://github.com/NixOS/nixpkgs/pull/222236
|
|
|
|
|
- https://github.com/NixOS/nixpkgs/pull/222689
|
|
|
|
|
|
|
|
|
|
And do not repeat our mistakes.
|
|
|
|
|
|
|
|
|
|
- @K900, March 2023
|
|
|
|
|
|
2016-07-16 22:11:42 +02:00
|
|
|
|
*/
|
|
|
|
|
|
2019-08-20 13:24:21 +02:00
|
|
|
|
{ config, pkgs, lib, ... }:
|
2013-06-27 13:12:45 +02:00
|
|
|
|
|
2014-04-14 16:26:48 +02:00
|
|
|
|
with lib;
|
2013-06-27 13:12:45 +02:00
|
|
|
|
|
2019-08-20 13:24:21 +02:00
|
|
|
|
let
|
|
|
|
|
cfg = config.fonts.fontconfig;
|
|
|
|
|
|
|
|
|
|
fcBool = x: "<bool>" + (boolToString x) + "</bool>";
|
2020-07-21 01:08:58 +02:00
|
|
|
|
pkg = pkgs.fontconfig;
|
2019-08-20 13:24:21 +02:00
|
|
|
|
|
|
|
|
|
# configuration file to read fontconfig cache
|
|
|
|
|
# priority 0
|
2020-07-21 01:08:58 +02:00
|
|
|
|
cacheConf = makeCacheConf {};
|
2019-08-20 13:24:21 +02:00
|
|
|
|
|
2020-07-21 01:08:58 +02:00
|
|
|
|
# generate the font cache setting file
|
2020-03-04 17:23:36 +01:00
|
|
|
|
# When cross-compiling, we can’t generate the cache, so we skip the
|
|
|
|
|
# <cachedir> part. fontconfig still works but is a little slower in
|
|
|
|
|
# looking things up.
|
2020-07-21 01:08:58 +02:00
|
|
|
|
makeCacheConf = { }:
|
2019-08-20 13:24:21 +02:00
|
|
|
|
let
|
2023-07-19 13:43:36 +02:00
|
|
|
|
makeCache = fontconfig: pkgs.makeFontsCache { inherit fontconfig; fontDirectories = config.fonts.packages; };
|
2020-07-21 01:08:58 +02:00
|
|
|
|
cache = makeCache pkgs.fontconfig;
|
|
|
|
|
cache32 = makeCache pkgs.pkgsi686Linux.fontconfig;
|
2019-08-20 13:24:21 +02:00
|
|
|
|
in
|
|
|
|
|
pkgs.writeText "fc-00-nixos-cache.conf" ''
|
2016-07-16 22:11:42 +02:00
|
|
|
|
<?xml version='1.0'?>
|
2020-09-03 06:38:22 +02:00
|
|
|
|
<!DOCTYPE fontconfig SYSTEM 'urn:fontconfig:fonts.dtd'>
|
2016-07-16 22:11:42 +02:00
|
|
|
|
<fontconfig>
|
2019-08-20 13:24:21 +02:00
|
|
|
|
<!-- Font directories -->
|
2023-07-19 13:43:36 +02:00
|
|
|
|
${concatStringsSep "\n" (map (font: "<dir>${font}</dir>") config.fonts.packages)}
|
2020-03-04 17:23:36 +01:00
|
|
|
|
${optionalString (pkgs.stdenv.hostPlatform == pkgs.stdenv.buildPlatform) ''
|
2019-08-20 13:24:21 +02:00
|
|
|
|
<!-- Pre-generated font caches -->
|
|
|
|
|
<cachedir>${cache}</cachedir>
|
|
|
|
|
${optionalString (pkgs.stdenv.isx86_64 && cfg.cache32Bit) ''
|
|
|
|
|
<cachedir>${cache32}</cachedir>
|
2016-07-16 22:11:42 +02:00
|
|
|
|
''}
|
2020-03-04 17:23:36 +01:00
|
|
|
|
''}
|
2016-07-16 22:11:42 +02:00
|
|
|
|
</fontconfig>
|
|
|
|
|
'';
|
|
|
|
|
|
2019-08-20 13:24:21 +02:00
|
|
|
|
# rendering settings configuration file
|
|
|
|
|
# priority 10
|
|
|
|
|
renderConf = pkgs.writeText "fc-10-nixos-rendering.conf" ''
|
|
|
|
|
<?xml version='1.0'?>
|
2020-09-03 06:38:22 +02:00
|
|
|
|
<!DOCTYPE fontconfig SYSTEM 'urn:fontconfig:fonts.dtd'>
|
2019-08-20 13:24:21 +02:00
|
|
|
|
<fontconfig>
|
|
|
|
|
|
|
|
|
|
<!-- Default rendering settings -->
|
|
|
|
|
<match target="pattern">
|
|
|
|
|
<edit mode="append" name="hinting">
|
|
|
|
|
${fcBool cfg.hinting.enable}
|
|
|
|
|
</edit>
|
|
|
|
|
<edit mode="append" name="autohint">
|
|
|
|
|
${fcBool cfg.hinting.autohint}
|
|
|
|
|
</edit>
|
2017-03-04 18:23:34 +01:00
|
|
|
|
</match>
|
|
|
|
|
|
2019-08-20 13:24:21 +02:00
|
|
|
|
</fontconfig>
|
|
|
|
|
'';
|
|
|
|
|
|
|
|
|
|
# local configuration file
|
|
|
|
|
localConf = pkgs.writeText "fc-local.conf" cfg.localConf;
|
|
|
|
|
|
|
|
|
|
# default fonts configuration file
|
|
|
|
|
# priority 52
|
|
|
|
|
defaultFontsConf =
|
|
|
|
|
let genDefault = fonts: name:
|
|
|
|
|
optionalString (fonts != []) ''
|
2019-08-29 04:16:34 +02:00
|
|
|
|
<alias binding="same">
|
2019-08-20 13:24:21 +02:00
|
|
|
|
<family>${name}</family>
|
|
|
|
|
<prefer>
|
|
|
|
|
${concatStringsSep ""
|
|
|
|
|
(map (font: ''
|
|
|
|
|
<family>${font}</family>
|
|
|
|
|
'') fonts)}
|
|
|
|
|
</prefer>
|
|
|
|
|
</alias>
|
|
|
|
|
'';
|
|
|
|
|
in
|
|
|
|
|
pkgs.writeText "fc-52-nixos-default-fonts.conf" ''
|
|
|
|
|
<?xml version='1.0'?>
|
2020-09-03 06:38:22 +02:00
|
|
|
|
<!DOCTYPE fontconfig SYSTEM 'urn:fontconfig:fonts.dtd'>
|
2019-08-20 13:24:21 +02:00
|
|
|
|
<fontconfig>
|
|
|
|
|
|
|
|
|
|
<!-- Default fonts -->
|
|
|
|
|
${genDefault cfg.defaultFonts.sansSerif "sans-serif"}
|
|
|
|
|
|
|
|
|
|
${genDefault cfg.defaultFonts.serif "serif"}
|
|
|
|
|
|
|
|
|
|
${genDefault cfg.defaultFonts.monospace "monospace"}
|
|
|
|
|
|
2019-08-29 04:16:34 +02:00
|
|
|
|
${genDefault cfg.defaultFonts.emoji "emoji"}
|
|
|
|
|
|
2019-08-20 13:24:21 +02:00
|
|
|
|
</fontconfig>
|
|
|
|
|
'';
|
|
|
|
|
|
|
|
|
|
# bitmap font options
|
|
|
|
|
# priority 53
|
2019-08-20 13:32:15 +02:00
|
|
|
|
rejectBitmaps = pkgs.writeText "fc-53-no-bitmaps.conf" ''
|
2019-08-20 13:24:21 +02:00
|
|
|
|
<?xml version="1.0"?>
|
2020-09-03 06:38:22 +02:00
|
|
|
|
<!DOCTYPE fontconfig SYSTEM "urn:fontconfig:fonts.dtd">
|
2019-08-20 13:24:21 +02:00
|
|
|
|
<fontconfig>
|
|
|
|
|
|
|
|
|
|
${optionalString (!cfg.allowBitmaps) ''
|
|
|
|
|
<!-- Reject bitmap fonts -->
|
|
|
|
|
<selectfont>
|
|
|
|
|
<rejectfont>
|
|
|
|
|
<pattern>
|
|
|
|
|
<patelt name="scalable"><bool>false</bool></patelt>
|
|
|
|
|
</pattern>
|
|
|
|
|
</rejectfont>
|
|
|
|
|
</selectfont>
|
|
|
|
|
''}
|
|
|
|
|
|
|
|
|
|
<!-- Use embedded bitmaps in fonts like Calibri? -->
|
|
|
|
|
<match target="font">
|
|
|
|
|
<edit name="embeddedbitmap" mode="assign">
|
|
|
|
|
${fcBool cfg.useEmbeddedBitmaps}
|
|
|
|
|
</edit>
|
|
|
|
|
</match>
|
|
|
|
|
|
|
|
|
|
</fontconfig>
|
|
|
|
|
'';
|
|
|
|
|
|
|
|
|
|
# reject Type 1 fonts
|
|
|
|
|
# priority 53
|
|
|
|
|
rejectType1 = pkgs.writeText "fc-53-nixos-reject-type1.conf" ''
|
|
|
|
|
<?xml version="1.0"?>
|
2020-09-03 06:38:22 +02:00
|
|
|
|
<!DOCTYPE fontconfig SYSTEM "urn:fontconfig:fonts.dtd">
|
2019-08-20 13:24:21 +02:00
|
|
|
|
<fontconfig>
|
|
|
|
|
|
|
|
|
|
<!-- Reject Type 1 fonts -->
|
|
|
|
|
<selectfont>
|
|
|
|
|
<rejectfont>
|
|
|
|
|
<pattern>
|
|
|
|
|
<patelt name="fontformat"><string>Type 1</string></patelt>
|
|
|
|
|
</pattern>
|
|
|
|
|
</rejectfont>
|
|
|
|
|
</selectfont>
|
|
|
|
|
|
|
|
|
|
</fontconfig>
|
|
|
|
|
'';
|
|
|
|
|
|
2023-03-20 18:39:50 +01:00
|
|
|
|
# Replace default linked config with a different variant
|
|
|
|
|
replaceDefaultConfig = defaultConfig: newConfig: ''
|
|
|
|
|
rm $dst/${defaultConfig}
|
|
|
|
|
ln -s ${pkg.out}/share/fontconfig/conf.avail/${newConfig} \
|
2023-06-04 10:44:13 +02:00
|
|
|
|
$dst/
|
2023-03-20 18:39:50 +01:00
|
|
|
|
'';
|
|
|
|
|
|
2019-08-20 13:24:21 +02:00
|
|
|
|
# fontconfig configuration package
|
|
|
|
|
confPkg = pkgs.runCommand "fontconfig-conf" {
|
|
|
|
|
preferLocalBuild = true;
|
|
|
|
|
} ''
|
2020-08-13 20:04:10 +02:00
|
|
|
|
dst=$out/etc/fonts/conf.d
|
2020-07-21 01:08:58 +02:00
|
|
|
|
mkdir -p $dst
|
2019-08-20 13:24:21 +02:00
|
|
|
|
|
|
|
|
|
# fonts.conf
|
2020-07-21 01:08:58 +02:00
|
|
|
|
ln -s ${pkg.out}/etc/fonts/fonts.conf \
|
|
|
|
|
$dst/../fonts.conf
|
2020-08-13 20:36:11 +02:00
|
|
|
|
# TODO: remove this legacy symlink once people stop using packages built before #95358 was merged
|
2020-08-13 20:04:10 +02:00
|
|
|
|
mkdir -p $out/etc/fonts/2.11
|
|
|
|
|
ln -s /etc/fonts/fonts.conf \
|
|
|
|
|
$out/etc/fonts/2.11/fonts.conf
|
2019-08-20 13:24:21 +02:00
|
|
|
|
|
|
|
|
|
# fontconfig default config files
|
2020-07-21 01:08:58 +02:00
|
|
|
|
ln -s ${pkg.out}/etc/fonts/conf.d/*.conf \
|
|
|
|
|
$dst/
|
|
|
|
|
|
2023-03-20 18:39:50 +01:00
|
|
|
|
${optionalString (!cfg.antialias)
|
|
|
|
|
(replaceDefaultConfig "10-yes-antialias.conf"
|
|
|
|
|
"10-no-antialias.conf")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
${optionalString (cfg.hinting.style != "slight")
|
|
|
|
|
(replaceDefaultConfig "10-hinting-slight.conf"
|
|
|
|
|
"10-hinting-${cfg.hinting.style}.conf")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
${optionalString (cfg.subpixel.rgba != "none")
|
|
|
|
|
(replaceDefaultConfig "10-sub-pixel-none.conf"
|
|
|
|
|
"10-sub-pixel-${cfg.subpixel.rgba}.conf")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
${optionalString (cfg.subpixel.lcdfilter != "default")
|
|
|
|
|
(replaceDefaultConfig "11-lcdfilter-default.conf"
|
|
|
|
|
"11-lcdfilter-${cfg.subpixel.lcdfilter}.conf")
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-20 13:24:21 +02:00
|
|
|
|
# 00-nixos-cache.conf
|
2020-07-21 01:08:58 +02:00
|
|
|
|
ln -s ${cacheConf} $dst/00-nixos-cache.conf
|
2019-08-20 13:24:21 +02:00
|
|
|
|
|
|
|
|
|
# 10-nixos-rendering.conf
|
2020-07-21 01:08:58 +02:00
|
|
|
|
ln -s ${renderConf} $dst/10-nixos-rendering.conf
|
2019-08-20 13:24:21 +02:00
|
|
|
|
|
|
|
|
|
# 50-user.conf
|
2020-09-06 02:56:31 +02:00
|
|
|
|
${optionalString (!cfg.includeUserConf) ''
|
|
|
|
|
rm $dst/50-user.conf
|
2019-08-20 13:24:21 +02:00
|
|
|
|
''}
|
|
|
|
|
|
|
|
|
|
# local.conf (indirect priority 51)
|
|
|
|
|
${optionalString (cfg.localConf != "") ''
|
2020-07-21 01:08:58 +02:00
|
|
|
|
ln -s ${localConf} $dst/../local.conf
|
2019-08-20 13:24:21 +02:00
|
|
|
|
''}
|
|
|
|
|
|
|
|
|
|
# 52-nixos-default-fonts.conf
|
2020-07-21 01:08:58 +02:00
|
|
|
|
ln -s ${defaultFontsConf} $dst/52-nixos-default-fonts.conf
|
2019-08-20 13:24:21 +02:00
|
|
|
|
|
2019-08-20 13:32:15 +02:00
|
|
|
|
# 53-no-bitmaps.conf
|
2020-07-21 01:08:58 +02:00
|
|
|
|
ln -s ${rejectBitmaps} $dst/53-no-bitmaps.conf
|
2019-08-20 13:24:21 +02:00
|
|
|
|
|
|
|
|
|
${optionalString (!cfg.allowType1) ''
|
|
|
|
|
# 53-nixos-reject-type1.conf
|
2020-07-21 01:08:58 +02:00
|
|
|
|
ln -s ${rejectType1} $dst/53-nixos-reject-type1.conf
|
2019-08-20 13:24:21 +02:00
|
|
|
|
''}
|
|
|
|
|
'';
|
|
|
|
|
|
|
|
|
|
# Package with configuration files
|
|
|
|
|
# this merge all the packages in the fonts.fontconfig.confPackages list
|
|
|
|
|
fontconfigEtc = pkgs.buildEnv {
|
|
|
|
|
name = "fontconfig-etc";
|
|
|
|
|
paths = cfg.confPackages;
|
|
|
|
|
ignoreCollisions = true;
|
|
|
|
|
};
|
2023-03-23 10:37:35 +01:00
|
|
|
|
|
|
|
|
|
fontconfigNote = "Consider manually configuring fonts.fontconfig according to personal preference.";
|
2016-07-16 22:11:42 +02:00
|
|
|
|
in
|
2013-06-27 13:12:45 +02:00
|
|
|
|
{
|
2019-12-10 02:51:19 +01:00
|
|
|
|
imports = [
|
|
|
|
|
(mkRenamedOptionModule [ "fonts" "fontconfig" "ultimate" "allowBitmaps" ] [ "fonts" "fontconfig" "allowBitmaps" ])
|
|
|
|
|
(mkRenamedOptionModule [ "fonts" "fontconfig" "ultimate" "allowType1" ] [ "fonts" "fontconfig" "allowType1" ])
|
|
|
|
|
(mkRenamedOptionModule [ "fonts" "fontconfig" "ultimate" "useEmbeddedBitmaps" ] [ "fonts" "fontconfig" "useEmbeddedBitmaps" ])
|
|
|
|
|
(mkRenamedOptionModule [ "fonts" "fontconfig" "ultimate" "forceAutohint" ] [ "fonts" "fontconfig" "forceAutohint" ])
|
|
|
|
|
(mkRenamedOptionModule [ "fonts" "fontconfig" "ultimate" "renderMonoTTFAsBitmap" ] [ "fonts" "fontconfig" "renderMonoTTFAsBitmap" ])
|
|
|
|
|
(mkRemovedOptionModule [ "fonts" "fontconfig" "forceAutohint" ] "")
|
|
|
|
|
(mkRemovedOptionModule [ "fonts" "fontconfig" "renderMonoTTFAsBitmap" ] "")
|
2017-05-24 16:25:19 +02:00
|
|
|
|
(mkRemovedOptionModule [ "fonts" "fontconfig" "dpi" ] "Use display server-specific options")
|
2023-03-23 10:37:35 +01:00
|
|
|
|
(mkRemovedOptionModule [ "hardware" "video" "hidpi" "enable" ] fontconfigNote)
|
|
|
|
|
(mkRemovedOptionModule [ "fonts" "optimizeForVeryHighDPI" ] fontconfigNote)
|
2020-06-18 23:12:18 +02:00
|
|
|
|
] ++ lib.forEach [ "enable" "substitutions" "preset" ]
|
|
|
|
|
(opt: lib.mkRemovedOptionModule [ "fonts" "fontconfig" "ultimate" "${opt}" ] ''
|
|
|
|
|
The fonts.fontconfig.ultimate module and configuration is obsolete.
|
|
|
|
|
The repository has since been archived and activity has ceased.
|
|
|
|
|
https://github.com/bohoomil/fontconfig-ultimate/issues/171.
|
|
|
|
|
No action should be needed for font configuration, as the fonts.fontconfig
|
|
|
|
|
module is already used by default.
|
|
|
|
|
'');
|
2013-06-27 13:12:45 +02:00
|
|
|
|
|
|
|
|
|
options = {
|
|
|
|
|
|
|
|
|
|
fonts = {
|
|
|
|
|
|
2014-11-30 20:36:49 +01:00
|
|
|
|
fontconfig = {
|
|
|
|
|
enable = mkOption {
|
|
|
|
|
type = types.bool;
|
|
|
|
|
default = true;
|
|
|
|
|
description = lib.mdDoc ''
|
|
|
|
|
If enabled, a Fontconfig configuration file will be built
|
|
|
|
|
pointing to a set of default fonts. If you don't care about
|
|
|
|
|
running X11 applications or any other program that uses
|
|
|
|
|
Fontconfig, you can turn this option off and prevent a
|
|
|
|
|
dependency on all those fonts.
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
2016-07-16 22:11:42 +02:00
|
|
|
|
confPackages = mkOption {
|
|
|
|
|
internal = true;
|
|
|
|
|
type = with types; listOf path;
|
|
|
|
|
default = [ ];
|
|
|
|
|
description = lib.mdDoc ''
|
|
|
|
|
Fontconfig configuration packages.
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
2014-11-30 20:36:49 +01:00
|
|
|
|
antialias = mkOption {
|
|
|
|
|
type = types.bool;
|
|
|
|
|
default = true;
|
freetype: 2.6.5 -> 2.7.1
The Infinality bytecode interpreter is removed in favor of the new v40 TrueType
interpreter. In the past, the Infinality interpreter provided support for
ClearType-style hinting instructions while the default interpreter (then v35)
provided support only for original TrueType-style instructions. The v40
interpreter corrects this deficiency, so the Infinality interpreter is no longer
necessary.
To understand why the Infinality interpreter is no longer necessary, we should
understand how ClearType differs from TrueType and how the v40 interpreter
works. The following is a summary of information available on the FreeType
website [1] mixed with my own editorializing.
TrueType instructions use horizontal and vertical hints to improve glyph
rendering. Before TrueType, fonts were only vertically hinted; horizontal hints
improved rendering by snapping stems to pixel boundaries. Horizontal hinting is
a risk because it can significantly distort glyph shapes and kerning. Extensive
testing at different resolutions is needed to perfect the TrueType
hints. Microsoft invested significant effort to do this with its "Core fonts for
the Web" project, but few other typefaces have seen this level of attention.
With the advent of subpixel rendering, the effective horizontal resolution of
most displays increased significantly. ClearType eschews horizontal hinting in
favor of horizontal supersampling. Most fonts are designed for the Microsoft
bytecode interpreter, which implements a compatibility mode with
TrueType-style (horizontal and vertical) instructions. However, applying the
full horizontal hints to subpixel-rendered fonts leads to color fringes and
inconsistent stem widths. The Infinality interpreter implements several
techniques to mitigate these problems, going so far as to embed font- and
glyph-specific hacks in the interpreter. On the other hand, the v40 interpreter
ignores the horizontal hinting instructions so that glyphs render as they are
intended to on the Microsoft interpreter. Without the horizontal hints, the
problems of glyph and kerning distortion, color fringes, and inconsistent stem
widths--the problems the Infinality interpreter was created to solve--simply
don't occur in the first place.
There are also security concerns which motivate removing the Infinality patches.
Although there is an updated version of the Infinality interpreter for FreeType
2.7, the lack of a consistent upstream maintainer is a security concern. The
interpreter is a Turing-complete virtual machine which has had security
vulnerabilities in the past. While the default interpreter is used in billions
of devices and is maintained by an active developer, the Infinality interpreter
is neither scrutinized nor maintained. We will probably never know if there are
defects in the Infinality interpreter, and if they were discovered they would
likely never be fixed. I do not think that is an acceptable situtation for a
core library like FreeType.
Dropping the Infinality patches means that font rendering will be less
customizable. I think this is an acceptable trade-off. The Infinality
interpreter made many compromises to mitigate the problems with horizontal
hinting; the main purpose of customization is to tailor these compromises to the
user's preferences. The new interpreter does not have to make these compromises
because it renders fonts as their designers intended, so this level of
customization is not necessary.
The Infinality-associated patches are also removed from cairo. These patches
only set the default rendering options in case they aren't set though
Fontconfig. On NixOS, the rendering options are always set in Fontconfig, so
these patches never actually did anything for us!
The Fontconfig test suite is patched to account for a quirk in the way PCF fonts
are named.
The fontconfig option `hintstyle` is no longer configurable in NixOS. This
option selects the TrueType interpreter; the v40 interpreter is `hintslight` and
the older v35 interpreter is `hintmedium` or `hintfull` (which have actually
always been the same thing). The setting may still be changed through the
`localConf` option or by creating a user Fontconfig file.
Users with HiDPI displays should probably disable hinting and antialiasing: at
best they have no visible effect.
The fontconfig-ultimate settings are still available in NixOS, but they are no
longer the default. They still work, but their main purpose is to set rendering
quirks which are no longer necessary and may actually be
detrimental (e.g. setting `hintfull` for some fonts). Also, the vast array of
font substitutions provided is not an appropriate default; the default setting
should be to give the user the font they asked for.
[1]. https://www.freetype.org/freetype2/docs/subpixel-hinting.html
2017-03-06 00:39:38 +01:00
|
|
|
|
description = lib.mdDoc ''
|
|
|
|
|
Enable font antialiasing. At high resolution (> 200 DPI),
|
|
|
|
|
antialiasing has no visible effect; users of such displays may want
|
|
|
|
|
to disable this option.
|
|
|
|
|
'';
|
2014-11-30 20:36:49 +01:00
|
|
|
|
};
|
|
|
|
|
|
2016-08-11 01:45:43 +02:00
|
|
|
|
localConf = mkOption {
|
|
|
|
|
type = types.lines;
|
|
|
|
|
default = "";
|
|
|
|
|
description = lib.mdDoc ''
|
freetype: 2.6.5 -> 2.7.1
The Infinality bytecode interpreter is removed in favor of the new v40 TrueType
interpreter. In the past, the Infinality interpreter provided support for
ClearType-style hinting instructions while the default interpreter (then v35)
provided support only for original TrueType-style instructions. The v40
interpreter corrects this deficiency, so the Infinality interpreter is no longer
necessary.
To understand why the Infinality interpreter is no longer necessary, we should
understand how ClearType differs from TrueType and how the v40 interpreter
works. The following is a summary of information available on the FreeType
website [1] mixed with my own editorializing.
TrueType instructions use horizontal and vertical hints to improve glyph
rendering. Before TrueType, fonts were only vertically hinted; horizontal hints
improved rendering by snapping stems to pixel boundaries. Horizontal hinting is
a risk because it can significantly distort glyph shapes and kerning. Extensive
testing at different resolutions is needed to perfect the TrueType
hints. Microsoft invested significant effort to do this with its "Core fonts for
the Web" project, but few other typefaces have seen this level of attention.
With the advent of subpixel rendering, the effective horizontal resolution of
most displays increased significantly. ClearType eschews horizontal hinting in
favor of horizontal supersampling. Most fonts are designed for the Microsoft
bytecode interpreter, which implements a compatibility mode with
TrueType-style (horizontal and vertical) instructions. However, applying the
full horizontal hints to subpixel-rendered fonts leads to color fringes and
inconsistent stem widths. The Infinality interpreter implements several
techniques to mitigate these problems, going so far as to embed font- and
glyph-specific hacks in the interpreter. On the other hand, the v40 interpreter
ignores the horizontal hinting instructions so that glyphs render as they are
intended to on the Microsoft interpreter. Without the horizontal hints, the
problems of glyph and kerning distortion, color fringes, and inconsistent stem
widths--the problems the Infinality interpreter was created to solve--simply
don't occur in the first place.
There are also security concerns which motivate removing the Infinality patches.
Although there is an updated version of the Infinality interpreter for FreeType
2.7, the lack of a consistent upstream maintainer is a security concern. The
interpreter is a Turing-complete virtual machine which has had security
vulnerabilities in the past. While the default interpreter is used in billions
of devices and is maintained by an active developer, the Infinality interpreter
is neither scrutinized nor maintained. We will probably never know if there are
defects in the Infinality interpreter, and if they were discovered they would
likely never be fixed. I do not think that is an acceptable situtation for a
core library like FreeType.
Dropping the Infinality patches means that font rendering will be less
customizable. I think this is an acceptable trade-off. The Infinality
interpreter made many compromises to mitigate the problems with horizontal
hinting; the main purpose of customization is to tailor these compromises to the
user's preferences. The new interpreter does not have to make these compromises
because it renders fonts as their designers intended, so this level of
customization is not necessary.
The Infinality-associated patches are also removed from cairo. These patches
only set the default rendering options in case they aren't set though
Fontconfig. On NixOS, the rendering options are always set in Fontconfig, so
these patches never actually did anything for us!
The Fontconfig test suite is patched to account for a quirk in the way PCF fonts
are named.
The fontconfig option `hintstyle` is no longer configurable in NixOS. This
option selects the TrueType interpreter; the v40 interpreter is `hintslight` and
the older v35 interpreter is `hintmedium` or `hintfull` (which have actually
always been the same thing). The setting may still be changed through the
`localConf` option or by creating a user Fontconfig file.
Users with HiDPI displays should probably disable hinting and antialiasing: at
best they have no visible effect.
The fontconfig-ultimate settings are still available in NixOS, but they are no
longer the default. They still work, but their main purpose is to set rendering
quirks which are no longer necessary and may actually be
detrimental (e.g. setting `hintfull` for some fonts). Also, the vast array of
font substitutions provided is not an appropriate default; the default setting
should be to give the user the font they asked for.
[1]. https://www.freetype.org/freetype2/docs/subpixel-hinting.html
2017-03-06 00:39:38 +01:00
|
|
|
|
System-wide customization file contents, has higher priority than
|
2016-08-11 01:45:43 +02:00
|
|
|
|
`defaultFonts` settings.
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
2014-11-30 20:36:49 +01:00
|
|
|
|
defaultFonts = {
|
|
|
|
|
monospace = mkOption {
|
2014-12-05 17:30:10 +01:00
|
|
|
|
type = types.listOf types.str;
|
|
|
|
|
default = ["DejaVu Sans Mono"];
|
2014-11-30 20:36:49 +01:00
|
|
|
|
description = lib.mdDoc ''
|
2014-12-05 17:30:10 +01:00
|
|
|
|
System-wide default monospace font(s). Multiple fonts may be
|
|
|
|
|
listed in case multiple languages must be supported.
|
2014-11-30 20:36:49 +01:00
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
sansSerif = mkOption {
|
2014-12-05 17:30:10 +01:00
|
|
|
|
type = types.listOf types.str;
|
|
|
|
|
default = ["DejaVu Sans"];
|
2014-11-30 20:36:49 +01:00
|
|
|
|
description = lib.mdDoc ''
|
2014-12-05 17:30:10 +01:00
|
|
|
|
System-wide default sans serif font(s). Multiple fonts may be
|
|
|
|
|
listed in case multiple languages must be supported.
|
2014-11-30 20:36:49 +01:00
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
serif = mkOption {
|
2014-12-05 17:30:10 +01:00
|
|
|
|
type = types.listOf types.str;
|
|
|
|
|
default = ["DejaVu Serif"];
|
2014-11-30 20:36:49 +01:00
|
|
|
|
description = lib.mdDoc ''
|
2014-12-05 17:30:10 +01:00
|
|
|
|
System-wide default serif font(s). Multiple fonts may be listed
|
|
|
|
|
in case multiple languages must be supported.
|
2014-11-30 20:36:49 +01:00
|
|
|
|
'';
|
|
|
|
|
};
|
2019-08-29 04:16:34 +02:00
|
|
|
|
|
|
|
|
|
emoji = mkOption {
|
|
|
|
|
type = types.listOf types.str;
|
|
|
|
|
default = ["Noto Color Emoji"];
|
|
|
|
|
description = lib.mdDoc ''
|
|
|
|
|
System-wide default emoji font(s). Multiple fonts may be listed
|
|
|
|
|
in case a font does not support all emoji.
|
|
|
|
|
|
|
|
|
|
Note that fontconfig matches color emoji fonts preferentially,
|
|
|
|
|
so if you want to use a black and white font while having
|
|
|
|
|
a color font installed (eg. Noto Color Emoji installed alongside
|
|
|
|
|
Noto Emoji), fontconfig will still choose the color font even
|
|
|
|
|
when it is later in the list.
|
|
|
|
|
'';
|
|
|
|
|
};
|
2014-11-30 20:36:49 +01:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
hinting = {
|
|
|
|
|
enable = mkOption {
|
|
|
|
|
type = types.bool;
|
|
|
|
|
default = true;
|
freetype: 2.6.5 -> 2.7.1
The Infinality bytecode interpreter is removed in favor of the new v40 TrueType
interpreter. In the past, the Infinality interpreter provided support for
ClearType-style hinting instructions while the default interpreter (then v35)
provided support only for original TrueType-style instructions. The v40
interpreter corrects this deficiency, so the Infinality interpreter is no longer
necessary.
To understand why the Infinality interpreter is no longer necessary, we should
understand how ClearType differs from TrueType and how the v40 interpreter
works. The following is a summary of information available on the FreeType
website [1] mixed with my own editorializing.
TrueType instructions use horizontal and vertical hints to improve glyph
rendering. Before TrueType, fonts were only vertically hinted; horizontal hints
improved rendering by snapping stems to pixel boundaries. Horizontal hinting is
a risk because it can significantly distort glyph shapes and kerning. Extensive
testing at different resolutions is needed to perfect the TrueType
hints. Microsoft invested significant effort to do this with its "Core fonts for
the Web" project, but few other typefaces have seen this level of attention.
With the advent of subpixel rendering, the effective horizontal resolution of
most displays increased significantly. ClearType eschews horizontal hinting in
favor of horizontal supersampling. Most fonts are designed for the Microsoft
bytecode interpreter, which implements a compatibility mode with
TrueType-style (horizontal and vertical) instructions. However, applying the
full horizontal hints to subpixel-rendered fonts leads to color fringes and
inconsistent stem widths. The Infinality interpreter implements several
techniques to mitigate these problems, going so far as to embed font- and
glyph-specific hacks in the interpreter. On the other hand, the v40 interpreter
ignores the horizontal hinting instructions so that glyphs render as they are
intended to on the Microsoft interpreter. Without the horizontal hints, the
problems of glyph and kerning distortion, color fringes, and inconsistent stem
widths--the problems the Infinality interpreter was created to solve--simply
don't occur in the first place.
There are also security concerns which motivate removing the Infinality patches.
Although there is an updated version of the Infinality interpreter for FreeType
2.7, the lack of a consistent upstream maintainer is a security concern. The
interpreter is a Turing-complete virtual machine which has had security
vulnerabilities in the past. While the default interpreter is used in billions
of devices and is maintained by an active developer, the Infinality interpreter
is neither scrutinized nor maintained. We will probably never know if there are
defects in the Infinality interpreter, and if they were discovered they would
likely never be fixed. I do not think that is an acceptable situtation for a
core library like FreeType.
Dropping the Infinality patches means that font rendering will be less
customizable. I think this is an acceptable trade-off. The Infinality
interpreter made many compromises to mitigate the problems with horizontal
hinting; the main purpose of customization is to tailor these compromises to the
user's preferences. The new interpreter does not have to make these compromises
because it renders fonts as their designers intended, so this level of
customization is not necessary.
The Infinality-associated patches are also removed from cairo. These patches
only set the default rendering options in case they aren't set though
Fontconfig. On NixOS, the rendering options are always set in Fontconfig, so
these patches never actually did anything for us!
The Fontconfig test suite is patched to account for a quirk in the way PCF fonts
are named.
The fontconfig option `hintstyle` is no longer configurable in NixOS. This
option selects the TrueType interpreter; the v40 interpreter is `hintslight` and
the older v35 interpreter is `hintmedium` or `hintfull` (which have actually
always been the same thing). The setting may still be changed through the
`localConf` option or by creating a user Fontconfig file.
Users with HiDPI displays should probably disable hinting and antialiasing: at
best they have no visible effect.
The fontconfig-ultimate settings are still available in NixOS, but they are no
longer the default. They still work, but their main purpose is to set rendering
quirks which are no longer necessary and may actually be
detrimental (e.g. setting `hintfull` for some fonts). Also, the vast array of
font substitutions provided is not an appropriate default; the default setting
should be to give the user the font they asked for.
[1]. https://www.freetype.org/freetype2/docs/subpixel-hinting.html
2017-03-06 00:39:38 +01:00
|
|
|
|
description = lib.mdDoc ''
|
|
|
|
|
Enable font hinting. Hinting aligns glyphs to pixel boundaries to
|
|
|
|
|
improve rendering sharpness at low resolution. At high resolution
|
|
|
|
|
(> 200 dpi) hinting will do nothing (at best); users of such
|
|
|
|
|
displays may want to disable this option.
|
|
|
|
|
'';
|
2014-11-30 20:36:49 +01:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
autohint = mkOption {
|
|
|
|
|
type = types.bool;
|
2017-04-03 15:22:03 +02:00
|
|
|
|
default = false;
|
2014-11-30 20:36:49 +01:00
|
|
|
|
description = lib.mdDoc ''
|
2017-04-03 15:22:03 +02:00
|
|
|
|
Enable the autohinter in place of the default interpreter.
|
|
|
|
|
The results are usually lower quality than correctly-hinted
|
|
|
|
|
fonts, but better than unhinted fonts.
|
2014-11-30 20:36:49 +01:00
|
|
|
|
'';
|
|
|
|
|
};
|
2022-06-26 13:03:01 +02:00
|
|
|
|
|
|
|
|
|
style = mkOption {
|
2023-03-20 18:39:50 +01:00
|
|
|
|
type = types.enum ["none" "slight" "medium" "full"];
|
|
|
|
|
default = "slight";
|
2022-06-26 13:03:01 +02:00
|
|
|
|
description = lib.mdDoc ''
|
|
|
|
|
Hintstyle is the amount of font reshaping done to line up
|
|
|
|
|
to the grid.
|
|
|
|
|
|
2023-03-20 18:39:50 +01:00
|
|
|
|
slight will make the font more fuzzy to line up to the grid but
|
|
|
|
|
will be better in retaining font shape, while full will be a
|
|
|
|
|
crisp font that aligns well to the pixel grid but will lose a
|
|
|
|
|
greater amount of font shape.
|
2022-06-26 13:03:01 +02:00
|
|
|
|
'';
|
2023-03-20 18:39:50 +01:00
|
|
|
|
apply =
|
|
|
|
|
val:
|
|
|
|
|
let
|
|
|
|
|
from = "fonts.fontconfig.hinting.style";
|
|
|
|
|
val' = lib.removePrefix "hint" val;
|
|
|
|
|
warning = "The option `${from}` contains a deprecated value `${val}`. Use `${val'}` instead.";
|
|
|
|
|
in
|
|
|
|
|
lib.warnIf (lib.hasPrefix "hint" val) warning val';
|
2022-06-26 13:03:01 +02:00
|
|
|
|
};
|
2014-11-30 20:36:49 +01:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
includeUserConf = mkOption {
|
|
|
|
|
type = types.bool;
|
|
|
|
|
default = true;
|
|
|
|
|
description = lib.mdDoc ''
|
|
|
|
|
Include the user configuration from
|
|
|
|
|
{file}`~/.config/fontconfig/fonts.conf` or
|
|
|
|
|
{file}`~/.config/fontconfig/conf.d`.
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
subpixel = {
|
|
|
|
|
|
|
|
|
|
rgba = mkOption {
|
2023-03-24 11:43:39 +01:00
|
|
|
|
default = "none";
|
2015-08-17 19:52:45 +02:00
|
|
|
|
type = types.enum ["rgb" "bgr" "vrgb" "vbgr" "none"];
|
2014-11-30 20:36:49 +01:00
|
|
|
|
description = lib.mdDoc ''
|
freetype: 2.6.5 -> 2.7.1
The Infinality bytecode interpreter is removed in favor of the new v40 TrueType
interpreter. In the past, the Infinality interpreter provided support for
ClearType-style hinting instructions while the default interpreter (then v35)
provided support only for original TrueType-style instructions. The v40
interpreter corrects this deficiency, so the Infinality interpreter is no longer
necessary.
To understand why the Infinality interpreter is no longer necessary, we should
understand how ClearType differs from TrueType and how the v40 interpreter
works. The following is a summary of information available on the FreeType
website [1] mixed with my own editorializing.
TrueType instructions use horizontal and vertical hints to improve glyph
rendering. Before TrueType, fonts were only vertically hinted; horizontal hints
improved rendering by snapping stems to pixel boundaries. Horizontal hinting is
a risk because it can significantly distort glyph shapes and kerning. Extensive
testing at different resolutions is needed to perfect the TrueType
hints. Microsoft invested significant effort to do this with its "Core fonts for
the Web" project, but few other typefaces have seen this level of attention.
With the advent of subpixel rendering, the effective horizontal resolution of
most displays increased significantly. ClearType eschews horizontal hinting in
favor of horizontal supersampling. Most fonts are designed for the Microsoft
bytecode interpreter, which implements a compatibility mode with
TrueType-style (horizontal and vertical) instructions. However, applying the
full horizontal hints to subpixel-rendered fonts leads to color fringes and
inconsistent stem widths. The Infinality interpreter implements several
techniques to mitigate these problems, going so far as to embed font- and
glyph-specific hacks in the interpreter. On the other hand, the v40 interpreter
ignores the horizontal hinting instructions so that glyphs render as they are
intended to on the Microsoft interpreter. Without the horizontal hints, the
problems of glyph and kerning distortion, color fringes, and inconsistent stem
widths--the problems the Infinality interpreter was created to solve--simply
don't occur in the first place.
There are also security concerns which motivate removing the Infinality patches.
Although there is an updated version of the Infinality interpreter for FreeType
2.7, the lack of a consistent upstream maintainer is a security concern. The
interpreter is a Turing-complete virtual machine which has had security
vulnerabilities in the past. While the default interpreter is used in billions
of devices and is maintained by an active developer, the Infinality interpreter
is neither scrutinized nor maintained. We will probably never know if there are
defects in the Infinality interpreter, and if they were discovered they would
likely never be fixed. I do not think that is an acceptable situtation for a
core library like FreeType.
Dropping the Infinality patches means that font rendering will be less
customizable. I think this is an acceptable trade-off. The Infinality
interpreter made many compromises to mitigate the problems with horizontal
hinting; the main purpose of customization is to tailor these compromises to the
user's preferences. The new interpreter does not have to make these compromises
because it renders fonts as their designers intended, so this level of
customization is not necessary.
The Infinality-associated patches are also removed from cairo. These patches
only set the default rendering options in case they aren't set though
Fontconfig. On NixOS, the rendering options are always set in Fontconfig, so
these patches never actually did anything for us!
The Fontconfig test suite is patched to account for a quirk in the way PCF fonts
are named.
The fontconfig option `hintstyle` is no longer configurable in NixOS. This
option selects the TrueType interpreter; the v40 interpreter is `hintslight` and
the older v35 interpreter is `hintmedium` or `hintfull` (which have actually
always been the same thing). The setting may still be changed through the
`localConf` option or by creating a user Fontconfig file.
Users with HiDPI displays should probably disable hinting and antialiasing: at
best they have no visible effect.
The fontconfig-ultimate settings are still available in NixOS, but they are no
longer the default. They still work, but their main purpose is to set rendering
quirks which are no longer necessary and may actually be
detrimental (e.g. setting `hintfull` for some fonts). Also, the vast array of
font substitutions provided is not an appropriate default; the default setting
should be to give the user the font they asked for.
[1]. https://www.freetype.org/freetype2/docs/subpixel-hinting.html
2017-03-06 00:39:38 +01:00
|
|
|
|
Subpixel order. The overwhelming majority of displays are
|
|
|
|
|
`rgb` in their normal orientation. Select
|
|
|
|
|
`vrgb` for mounting such a display 90 degrees
|
|
|
|
|
clockwise from its normal orientation or `vbgr`
|
|
|
|
|
for mounting 90 degrees counter-clockwise. Select
|
|
|
|
|
`bgr` in the unlikely event of mounting 180
|
|
|
|
|
degrees from the normal orientation. Reverse these directions in
|
|
|
|
|
the improbable event that the display's native subpixel order is
|
|
|
|
|
`bgr`.
|
2014-11-30 20:36:49 +01:00
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
lcdfilter = mkOption {
|
|
|
|
|
default = "default";
|
2015-08-17 19:52:45 +02:00
|
|
|
|
type = types.enum ["none" "default" "light" "legacy"];
|
2014-11-30 20:36:49 +01:00
|
|
|
|
description = lib.mdDoc ''
|
freetype: 2.6.5 -> 2.7.1
The Infinality bytecode interpreter is removed in favor of the new v40 TrueType
interpreter. In the past, the Infinality interpreter provided support for
ClearType-style hinting instructions while the default interpreter (then v35)
provided support only for original TrueType-style instructions. The v40
interpreter corrects this deficiency, so the Infinality interpreter is no longer
necessary.
To understand why the Infinality interpreter is no longer necessary, we should
understand how ClearType differs from TrueType and how the v40 interpreter
works. The following is a summary of information available on the FreeType
website [1] mixed with my own editorializing.
TrueType instructions use horizontal and vertical hints to improve glyph
rendering. Before TrueType, fonts were only vertically hinted; horizontal hints
improved rendering by snapping stems to pixel boundaries. Horizontal hinting is
a risk because it can significantly distort glyph shapes and kerning. Extensive
testing at different resolutions is needed to perfect the TrueType
hints. Microsoft invested significant effort to do this with its "Core fonts for
the Web" project, but few other typefaces have seen this level of attention.
With the advent of subpixel rendering, the effective horizontal resolution of
most displays increased significantly. ClearType eschews horizontal hinting in
favor of horizontal supersampling. Most fonts are designed for the Microsoft
bytecode interpreter, which implements a compatibility mode with
TrueType-style (horizontal and vertical) instructions. However, applying the
full horizontal hints to subpixel-rendered fonts leads to color fringes and
inconsistent stem widths. The Infinality interpreter implements several
techniques to mitigate these problems, going so far as to embed font- and
glyph-specific hacks in the interpreter. On the other hand, the v40 interpreter
ignores the horizontal hinting instructions so that glyphs render as they are
intended to on the Microsoft interpreter. Without the horizontal hints, the
problems of glyph and kerning distortion, color fringes, and inconsistent stem
widths--the problems the Infinality interpreter was created to solve--simply
don't occur in the first place.
There are also security concerns which motivate removing the Infinality patches.
Although there is an updated version of the Infinality interpreter for FreeType
2.7, the lack of a consistent upstream maintainer is a security concern. The
interpreter is a Turing-complete virtual machine which has had security
vulnerabilities in the past. While the default interpreter is used in billions
of devices and is maintained by an active developer, the Infinality interpreter
is neither scrutinized nor maintained. We will probably never know if there are
defects in the Infinality interpreter, and if they were discovered they would
likely never be fixed. I do not think that is an acceptable situtation for a
core library like FreeType.
Dropping the Infinality patches means that font rendering will be less
customizable. I think this is an acceptable trade-off. The Infinality
interpreter made many compromises to mitigate the problems with horizontal
hinting; the main purpose of customization is to tailor these compromises to the
user's preferences. The new interpreter does not have to make these compromises
because it renders fonts as their designers intended, so this level of
customization is not necessary.
The Infinality-associated patches are also removed from cairo. These patches
only set the default rendering options in case they aren't set though
Fontconfig. On NixOS, the rendering options are always set in Fontconfig, so
these patches never actually did anything for us!
The Fontconfig test suite is patched to account for a quirk in the way PCF fonts
are named.
The fontconfig option `hintstyle` is no longer configurable in NixOS. This
option selects the TrueType interpreter; the v40 interpreter is `hintslight` and
the older v35 interpreter is `hintmedium` or `hintfull` (which have actually
always been the same thing). The setting may still be changed through the
`localConf` option or by creating a user Fontconfig file.
Users with HiDPI displays should probably disable hinting and antialiasing: at
best they have no visible effect.
The fontconfig-ultimate settings are still available in NixOS, but they are no
longer the default. They still work, but their main purpose is to set rendering
quirks which are no longer necessary and may actually be
detrimental (e.g. setting `hintfull` for some fonts). Also, the vast array of
font substitutions provided is not an appropriate default; the default setting
should be to give the user the font they asked for.
[1]. https://www.freetype.org/freetype2/docs/subpixel-hinting.html
2017-03-06 00:39:38 +01:00
|
|
|
|
FreeType LCD filter. At high resolution (> 200 DPI), LCD filtering
|
|
|
|
|
has no visible effect; users of such displays may want to select
|
|
|
|
|
`none`.
|
2014-11-30 20:36:49 +01:00
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
2016-01-29 12:40:51 +01:00
|
|
|
|
cache32Bit = mkOption {
|
|
|
|
|
default = false;
|
|
|
|
|
type = types.bool;
|
|
|
|
|
description = lib.mdDoc ''
|
|
|
|
|
Generate system fonts cache for 32-bit applications.
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
2017-03-04 18:23:34 +01:00
|
|
|
|
allowBitmaps = mkOption {
|
|
|
|
|
type = types.bool;
|
|
|
|
|
default = true;
|
|
|
|
|
description = lib.mdDoc ''
|
|
|
|
|
Allow bitmap fonts. Set to `false` to ban all
|
|
|
|
|
bitmap fonts.
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
allowType1 = mkOption {
|
|
|
|
|
type = types.bool;
|
|
|
|
|
default = false;
|
|
|
|
|
description = lib.mdDoc ''
|
|
|
|
|
Allow Type-1 fonts. Default is `false` because of
|
|
|
|
|
poor rendering.
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
useEmbeddedBitmaps = mkOption {
|
|
|
|
|
type = types.bool;
|
|
|
|
|
default = false;
|
2021-01-24 10:19:10 +01:00
|
|
|
|
description = lib.mdDoc "Use embedded bitmaps in fonts like Calibri.";
|
2017-03-04 18:23:34 +01:00
|
|
|
|
};
|
|
|
|
|
|
2013-06-27 13:12:45 +02:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
};
|
2017-04-03 15:48:50 +02:00
|
|
|
|
config = mkMerge [
|
|
|
|
|
(mkIf cfg.enable {
|
|
|
|
|
environment.systemPackages = [ pkgs.fontconfig ];
|
|
|
|
|
environment.etc.fonts.source = "${fontconfigEtc}/etc/fonts/";
|
2020-10-18 15:36:24 +02:00
|
|
|
|
security.apparmor.includes."abstractions/fonts" = ''
|
|
|
|
|
# fonts.conf
|
|
|
|
|
r ${pkg.out}/etc/fonts/fonts.conf,
|
|
|
|
|
|
|
|
|
|
# fontconfig default config files
|
|
|
|
|
r ${pkg.out}/etc/fonts/conf.d/*.conf,
|
|
|
|
|
|
|
|
|
|
# 00-nixos-cache.conf
|
|
|
|
|
r ${cacheConf},
|
|
|
|
|
|
|
|
|
|
# 10-nixos-rendering.conf
|
|
|
|
|
r ${renderConf},
|
|
|
|
|
|
|
|
|
|
# 50-user.conf
|
|
|
|
|
${optionalString cfg.includeUserConf ''
|
|
|
|
|
r ${pkg.out}/etc/fonts/conf.d.bak/50-user.conf,
|
|
|
|
|
''}
|
|
|
|
|
|
|
|
|
|
# local.conf (indirect priority 51)
|
|
|
|
|
${optionalString (cfg.localConf != "") ''
|
|
|
|
|
r ${localConf},
|
|
|
|
|
''}
|
|
|
|
|
|
|
|
|
|
# 52-nixos-default-fonts.conf
|
|
|
|
|
r ${defaultFontsConf},
|
|
|
|
|
|
|
|
|
|
# 53-no-bitmaps.conf
|
|
|
|
|
r ${rejectBitmaps},
|
|
|
|
|
|
|
|
|
|
${optionalString (!cfg.allowType1) ''
|
|
|
|
|
# 53-nixos-reject-type1.conf
|
|
|
|
|
r ${rejectType1},
|
|
|
|
|
''}
|
|
|
|
|
'';
|
2017-04-03 15:48:50 +02:00
|
|
|
|
})
|
2020-08-17 13:25:46 +02:00
|
|
|
|
(mkIf cfg.enable {
|
2017-04-03 15:48:50 +02:00
|
|
|
|
fonts.fontconfig.confPackages = [ confPkg ];
|
|
|
|
|
})
|
|
|
|
|
];
|
2013-06-27 13:12:45 +02:00
|
|
|
|
|
|
|
|
|
}
|