1
0
Fork 0
nix-configuration/modules/apps/office.nix

21 lines
359 B
Nix
Raw Normal View History

2024-02-29 09:53:34 -05:00
{ config, lib, ... }:
let
cfg = config.host.apps.office;
2024-02-29 09:53:34 -05:00
in
with lib;
{
options = {
host.apps.office.enable = mkEnableOption (mdDoc "Enables office and workstation apps");
};
2024-02-29 09:53:34 -05:00
config = mkIf cfg.enable {
host.ui.flatpak.enable = true;
2024-02-29 09:53:34 -05:00
services.flatpak.packages = [
2024-06-20 17:14:16 -04:00
"org.onlyoffice.desktopeditors"
"us.zoom.Zoom"
];
};
}