Add libre office #34

Merged
armel merged 1 commits from feature/libreoffice into master 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/firefox.nix
./programs/tmux.nix ./programs/tmux.nix
./programs/git.nix ./programs/git.nix
./programs/libreoffice.nix
./wm/rofi.nix ./wm/rofi.nix
./wm/cursor.nix ./wm/cursor.nix
./wm/dconf.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
];
}