LibreOffice: Difference between revisions
imported>Haizaar No edit summary |
imported>Harärmat How to make spell check work |
||
Line 1: | Line 1: | ||
LibreOffice is a multi-platform Word-processor. | LibreOffice is a multi-platform Word-processor. | ||
== Spellcheck == | |||
In order for spellcheck to work, you will need to install the <code>hunspell</code> as well as the languages that you would like. For example this installs libreoffice with dictionaries for Ukrainian and Central Thai. | |||
<syntaxHighlight lang=nix> | |||
environment.systemPackages = with pkgs; [ | |||
libreoffice-qt | |||
hunspell | |||
hunspellDicts.uk_UA | |||
hunspellDicts.th_TH | |||
]; | |||
</syntaxHighlight> | |||
== uno Python Library == | == uno Python Library == |