2026-05-02 09:08:40 +02:00
|
|
|
# Office and productivity applications — LibreOffice and document tools.
|
|
|
|
|
{
|
|
|
|
|
config,
|
|
|
|
|
lib,
|
|
|
|
|
pkgs,
|
|
|
|
|
...
|
|
|
|
|
}:
|
|
|
|
|
with lib; let
|
|
|
|
|
cfg = config.desktop.apps.office;
|
|
|
|
|
in {
|
|
|
|
|
options.desktop.apps.office.enable = mkEnableOption "install office and paperwork apps";
|
|
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
2026-08-31 11:44:58 +02:00
|
|
|
# libreoffice-fresh warns: upstream changed versioning; -stable is the
|
|
|
|
|
# supported attr now.
|
|
|
|
|
home.packages = [pkgs.libreoffice-stable];
|
2026-05-02 09:08:40 +02:00
|
|
|
};
|
|
|
|
|
}
|