Merge pull request 'Add libre office' (#34) from feature/libreoffice into master

Reviewed-on: #34
This commit was merged in pull request #34.
This commit is contained in:
2026-02-07 11:38:52 +01:00
2 changed files with 12 additions and 0 deletions

View File

@@ -16,6 +16,7 @@
./programs/firefox.nix
./programs/tmux.nix
./programs/git.nix
./programs/libreoffice.nix
./wm/rofi.nix
./wm/cursor.nix
./wm/dconf.nix

11
programs/libreoffice.nix Normal file
View File

@@ -0,0 +1,11 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [
libreoffice
hunspell
hunspellDicts.en_US
hunspellDicts.nl_NL
];
}