modules/terminal: remove mention of TTF font requirement

As mentioned in #230, probably all font types will work with this option
despite the fact that the symlink needs to be called
`~/.termux/font.ttf`.
This commit is contained in:
Tobias Happ 2022-12-04 14:43:25 +01:00 committed by Alexander Sosedkin
parent 3dfb9d44b5
commit 588ab89b1d
2 changed files with 2 additions and 2 deletions

View file

@ -19,7 +19,7 @@
### New Options ### New Options
* Terminal font now should be specified using `terminal.font` option, * Terminal font now should be specified using `terminal.font` option,
set it to a TTF file to apply a font. set it to any file containing a font to apply it.
An in-app `Styling` option will no longer work. An in-app `Styling` option will no longer work.
Previously present file will be backed up to `~/.termux/font.ttf.bak`. Previously present file will be backed up to `~/.termux/font.ttf.bak`.
* Add option `environment.motd` to edit the startup message that is printed in * Add option `environment.motd` to edit the startup message that is printed in

View file

@ -20,7 +20,7 @@ in
example = lib.literalExpression example = lib.literalExpression
''"''${pkgs.terminus_font_ttf}/share/fonts/truetype/TerminusTTF.ttf"''; ''"''${pkgs.terminus_font_ttf}/share/fonts/truetype/TerminusTTF.ttf"'';
description = '' description = ''
Font used for the terminal. Must be a path to a TTF font. Font used for the terminal.
''; '';
}; };