add zoom
This commit is contained in:
parent
a600f71548
commit
c0feb057b5
2 changed files with 17 additions and 0 deletions
|
@ -2,5 +2,6 @@
|
||||||
imports = [
|
imports = [
|
||||||
./teams
|
./teams
|
||||||
./whatsapp
|
./whatsapp
|
||||||
|
./zoom
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
16
modules/desktop/chat/zoom/default.nix
Normal file
16
modules/desktop/chat/zoom/default.nix
Normal 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
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue