nix-dotfiles/modules/hm/office.nix
2023-07-19 10:42:09 +01:00

6 lines
175 B
Nix

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