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

21 lines
374 B
Nix
Raw Normal View History

2024-02-29 09:53:34 -05:00
{ config, lib, ... }:
let
cfg = config.aux.system.apps.office;
2024-02-29 09:53:34 -05:00
in
{
options = {
2024-08-02 17:55:48 -04:00
aux.system.apps.office.enable = lib.mkEnableOption "Enables office and workstation apps";
};
2024-02-29 09:53:34 -05:00
2024-08-02 17:55:48 -04:00
config = lib.mkIf cfg.enable {
2024-06-25 14:13:15 -04:00
aux.system.ui.flatpak = {
enable = true;
packages = [
"org.onlyoffice.desktopeditors"
"us.zoom.Zoom"
2024-06-25 14:13:15 -04:00
];
};
};
}