summary refs log tree commit diff
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
parent5cf9cbdc1798d189e3b269f2f40d08ecc82650e8 (diff)
downloadnixpkgs-7a78892c478be77fd53a9fdec25a4dac043e9560.tar
nixpkgs-7a78892c478be77fd53a9fdec25a4dac043e9560.tar.gz
nixpkgs-7a78892c478be77fd53a9fdec25a4dac043e9560.tar.bz2
nixpkgs-7a78892c478be77fd53a9fdec25a4dac043e9560.tar.lz
nixpkgs-7a78892c478be77fd53a9fdec25a4dac043e9560.tar.xz
nixpkgs-7a78892c478be77fd53a9fdec25a4dac043e9560.tar.zst
nixpkgs-7a78892c478be77fd53a9fdec25a4dac043e9560.zip
nixos/fontconfig: disable autohint by default
-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 4d3cc26365f..93c5f2df725 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.
             '';
           };
         };