nixos/fontconfig: disable autohint by default

This commit is contained in:
Thomas Tuegel 2017-04-03 08:22:03 -05:00
parent 5cf9cbdc17
commit 7a78892c47
No known key found for this signature in database
GPG Key ID: 22CBF5249D4B4D59

View File

@ -372,11 +372,11 @@ in
autohint = mkOption { autohint = mkOption {
type = types.bool; type = types.bool;
default = true; default = false;
description = '' description = ''
Enable the autohinter, which provides hinting for otherwise Enable the autohinter in place of the default interpreter.
un-hinted fonts. The results are usually lower quality than The results are usually lower quality than correctly-hinted
correctly-hinted fonts. fonts, but better than unhinted fonts.
''; '';
}; };
}; };