summaryrefslogtreecommitdiffstats
path: root/nixos/modules/config/fonts
diff options
context:
space:
mode:
authorThomas Tuegel <ttuegel@mailbox.org>2017-04-03 08:22:03 -0500
committerThomas Tuegel <ttuegel@mailbox.org>2017-04-03 08:22:03 -0500
commit7a78892c478be77fd53a9fdec25a4dac043e9560 (patch)
tree6f57eefc16fb5704854b1d116a07389856be08a9 /nixos/modules/config/fonts
parent5cf9cbdc1798d189e3b269f2f40d08ecc82650e8 (diff)
nixos/fontconfig: disable autohint by default
Diffstat (limited to 'nixos/modules/config/fonts')
-rw-r--r--nixos/modules/config/fonts/fontconfig.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/nixos/modules/config/fonts/fontconfig.nix b/nixos/modules/config/fonts/fontconfig.nix
index 4d3cc26365fc..93c5f2df725a 100644
--- a/nixos/modules/config/fonts/fontconfig.nix
+++ b/nixos/modules/config/fonts/fontconfig.nix
@@ -372,11 +372,11 @@ in
autohint = mkOption {
type = types.bool;
- default = true;
+ default = false;
description = ''
- Enable the autohinter, which provides hinting for otherwise
- un-hinted fonts. The results are usually lower quality than
- correctly-hinted fonts.
+ Enable the autohinter in place of the default interpreter.
+ The results are usually lower quality than correctly-hinted
+ fonts, but better than unhinted fonts.
'';
};
};