home: added zoom configuration

This commit is contained in:
Tigor Hutasuhut 2024-08-15 15:54:44 +07:00
parent d645ca2157
commit 9e3a4341f7
4 changed files with 15 additions and 0 deletions

View file

@ -29,6 +29,7 @@
./vscode.nix
./whatsapp.nix
./zathura.nix
./zoom.nix
./zsh.nix
./wezterm

12
home/programs/zoom.nix Normal file
View file

@ -0,0 +1,12 @@
{ config, lib, pkgs, ... }:
let
cfg = config.profile.home.programs.zoom;
inherit (lib) mkIf;
in
{
config = mkIf cfg.enable {
home.packages = with pkgs; [
zoom-us
];
};
}

View file

@ -109,6 +109,7 @@
};
foot.enable = lib.mkEnableOption "foot";
bruno.enable = lib.mkEnableOption "bruno";
zoom.enable = lib.mkEnableOption "zoom";
};
programs = {

View file

@ -81,6 +81,7 @@ in
home.programs = {
zathura.enable = true;
bruno.enable = true;
zoom.enable = true;
};
programs.easyeffects.enable = true;
programs.wezterm.enable = true;