Files
m3ta-home/profiles/contexts/desktop/apps/office.nix
T

19 lines
442 B
Nix

# 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];
};
}