2023-09-11 11:37:10 +04:00
|
|
|
{ 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 {
|
2023-09-11 11:38:22 +04:00
|
|
|
users.users.sako.packages = with pkgs; [
|
2023-09-11 11:37:10 +04:00
|
|
|
zoom-us
|
|
|
|
];
|
|
|
|
};
|
|
|
|
}
|