nixos/modules/desktop/chat/zoom/default.nix
2023-09-11 11:38:22 +04:00

16 lines
289 B
Nix

{ 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.packages = with pkgs; [
zoom-us
];
};
}