This commit is contained in:
Sakooooo 2023-09-11 11:37:10 +04:00
parent a600f71548
commit c0feb057b5
Signed by: sako
GPG key ID: 3FD715D87D7725E0
2 changed files with 17 additions and 0 deletions

View file

@ -2,5 +2,6 @@
imports = [ imports = [
./teams ./teams
./whatsapp ./whatsapp
./zoom
]; ];
} }

View file

@ -0,0 +1,16 @@
{ outputs, options, config, lib, pkgs, ...}:
with lib;
let
cfg = config.modules.desktop.chat.zoom;
in
{
options.modules.desktop.chat.zoom = {
enable = mkEnableOption false;
};
config = mkIf cfg.enable {
users.users.sako.package = with pkgs; [
zoom-us
];
};
}