edv: Add libreoffice

This commit is contained in:
caem 2025-02-16 17:22:32 +01:00
parent fedbcead2b
commit ae00aa55e6
Signed by: caem
GPG key ID: 69A830D03203405F
2 changed files with 16 additions and 0 deletions

View file

@ -12,6 +12,7 @@
"${modules}/desktop/gnome" "${modules}/desktop/gnome"
"${modules}/communication" "${modules}/communication"
"${modules}/development" "${modules}/development"
"${modules}/edv"
]; ];
} }

View file

@ -0,0 +1,15 @@
{ pkgs, username, ... }:
{
environment.persistence."/nix/persist" = {
users."${username}".directories = [
".config/libreoffice"
];
};
environment.systemPackages = with pkgs; [
libreoffice-fresh
hunspell
hunspellDicts.de_DE
];
}