nixfiles/home/apps/libreoffice.nix
2023-09-01 16:56:26 +01:00

12 lines
287 B
Nix

{pkgs, ...}: {
home.packages = with pkgs; [
libreoffice
hunspell
hunspellDicts.tok # Toki Pona
hunspellDicts.en_GB-ize # GB English with -ize endings
hunspellDicts.en-us # US English
hunspellDicts.de-de # German
hunspellDicts.de-at # Austrian German
];
}