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

26 lines
399 B
Nix
Raw Normal View History

2024-12-06 16:46:10 +00:00
{
config,
lib,
namespace,
...
}:
2024-02-29 14:53:34 +00:00
let
2024-12-06 16:46:10 +00:00
cfg = config.${namespace}.apps.office;
2024-02-29 14:53:34 +00:00
in
{
options = {
2024-12-06 16:46:10 +00:00
${namespace}.apps.office.enable = lib.mkEnableOption "Enables office and workstation apps";
};
2024-02-29 14:53:34 +00:00
2024-08-02 21:55:48 +00:00
config = lib.mkIf cfg.enable {
2024-12-06 16:46:10 +00:00
${namespace}.ui.flatpak = {
2024-06-25 18:13:15 +00:00
enable = true;
packages = [
"org.onlyoffice.desktopeditors"
"us.zoom.Zoom"
2024-06-25 18:13:15 +00:00
];
};
};
}