nixos/fontconfig: remove renderMonoTTFAsBitmap

This commit is contained in:
Thomas Tuegel 2017-04-03 08:24:32 -05:00
parent 21c9190a5f
commit 03942659ca
No known key found for this signature in database
GPG Key ID: 22CBF5249D4B4D59
2 changed files with 1 additions and 13 deletions

View File

@ -167,13 +167,6 @@ let cfg = config.fonts.fontconfig;
</edit> </edit>
</match> </match>
<!-- Render some monospace TTF fonts as bitmaps -->
<match target="pattern">
<edit name="bitmap_monospace" mode="assign">
${fcBool cfg.renderMonoTTFAsBitmap}
</edit>
</match>
</fontconfig> </fontconfig>
''; '';
@ -446,12 +439,6 @@ in
description = ''Use embedded bitmaps in fonts like Calibri.''; description = ''Use embedded bitmaps in fonts like Calibri.'';
}; };
renderMonoTTFAsBitmap = mkOption {
type = types.bool;
default = false;
description = ''Render some monospace TTF fonts as bitmaps.'';
};
}; };
}; };

View File

@ -203,5 +203,6 @@ with lib;
(mkRemovedOptionModule [ "services" "xserver" "displayManager" "sddm" "themes" ] (mkRemovedOptionModule [ "services" "xserver" "displayManager" "sddm" "themes" ]
"Set the option `services.xserver.displayManager.sddm.package' instead.") "Set the option `services.xserver.displayManager.sddm.package' instead.")
(mkRemovedOptionModule [ "fonts" "fontconfig" "forceAutohint" ] "") (mkRemovedOptionModule [ "fonts" "fontconfig" "forceAutohint" ] "")
(mkRemovedOptionModule [ "fonts" "fontconfig" "renderMonoTTFAsBitmap" ] "")
]; ];
} }