# 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 { # libreoffice-fresh warns: upstream changed versioning; -stable is the # supported attr now. home.packages = [pkgs.libreoffice-stable]; }; }