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

30 lines
639 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
with lib;
{
options = {
aux.system.apps.office.enable = mkEnableOption (mdDoc "Enables office and workstation apps");
};
2024-02-29 09:53:34 -05:00
config = 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
];
};
# Downgrade Zoom due to https://github.com/flathub/us.zoom.Zoom/issues/471
services.flatpak.packages = [
{
appId = "us.zoom.Zoom";
commit = "b9505f108b5f9acb2bbad83ac66f97b42bc6a75b9c28ed7b75dec1040e013305";
}
];
};
}