edv: Add libreoffice
This commit is contained in:
parent
fedbcead2b
commit
ae00aa55e6
2 changed files with 16 additions and 0 deletions
|
@ -12,6 +12,7 @@
|
|||
"${modules}/desktop/gnome"
|
||||
"${modules}/communication"
|
||||
"${modules}/development"
|
||||
"${modules}/edv"
|
||||
];
|
||||
}
|
||||
|
||||
|
|
15
modules/nixos/edv/default.nix
Normal file
15
modules/nixos/edv/default.nix
Normal 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
|
||||
];
|
||||
}
|
Loading…
Add table
Reference in a new issue