nix-dotfiles/hm/modules/office.nix
2025-09-08 11:36:45 +02:00

10 lines
194 B
Nix

{ pkgs, ... }:
{
home.packages = builtins.attrValues {
inherit (pkgs)
hunspell
libreoffice-fresh
;
inherit (pkgs.hunspellDicts) en_GB-large en_US-large it_IT;
};
}