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

27 lines
430 B
Nix
Raw Permalink Normal View History

2024-12-06 18:04:47 +00:00
{
config,
lib,
namespace,
...
}:
let
cfg = config.${namespace}.apps.office;
in
{
options = {
${namespace}.apps.office.enable = lib.mkEnableOption "Enables office and workstation apps";
};
config = lib.mkIf cfg.enable {
${namespace}.ui.flatpak = {
enable = true;
packages = [
"md.obsidian.Obsidian"
2024-12-06 18:04:47 +00:00
"org.onlyoffice.desktopeditors"
"us.zoom.Zoom"
];
};
};
}