1
0
Fork 0
nix-configuration/modules/apps/office.nix
2024-05-01 21:10:26 -04:00

21 lines
339 B
Nix

{ config, lib, ... }:
let
cfg = config.host.apps.office;
in
with lib;
{
options = {
host.apps.office.enable = mkEnableOption (mdDoc "Enables office and workstation apps");
};
config = mkIf cfg.enable {
host.ui.flatpak.enable = true;
services.flatpak.packages = [
"org.libreoffice.LibreOffice"
"us.zoom.Zoom"
];
};
}