nixos: fix config.fonts.fontconfig.ultimate.allowBitmaps
The option was incorrectly negated, so that 'allowBitmaps = true' actually disabled bitmap fonts.
This commit is contained in:
parent
71f4e0ee86
commit
32e41c2280
@ -122,7 +122,7 @@ in
|
|||||||
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
|
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
|
||||||
<fontconfig>
|
<fontconfig>
|
||||||
|
|
||||||
${optionalString ultimate.allowBitmaps ''
|
${optionalString (!ultimate.allowBitmaps) ''
|
||||||
<!-- Reject bitmap fonts -->
|
<!-- Reject bitmap fonts -->
|
||||||
<selectfont>
|
<selectfont>
|
||||||
<rejectfont>
|
<rejectfont>
|
||||||
|
Loading…
Reference in New Issue
Block a user