14 lines
175 B
Nix
14 lines
175 B
Nix
{ pkgs, ... }:
|
|
|
|
let
|
|
libreoffice = pkgs.libreoffice;
|
|
in {
|
|
|
|
home.packages = with pkgs; [
|
|
libreoffice
|
|
hunspell
|
|
hunspellDicts.en_US
|
|
hunspellDicts.de_DE
|
|
];
|
|
}
|