mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
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
1 changed files with 1 additions and 1 deletions
|
@ -122,7 +122,7 @@ in
|
|||
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
|
||||
<fontconfig>
|
||||
|
||||
${optionalString ultimate.allowBitmaps ''
|
||||
${optionalString (!ultimate.allowBitmaps) ''
|
||||
<!-- Reject bitmap fonts -->
|
||||
<selectfont>
|
||||
<rejectfont>
|
||||
|
|
Loading…
Reference in a new issue