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 {
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.
'';
};
};