Compare commits

..

2 commits

Author SHA1 Message Date
Tigor Hutasuhut 9e3a4341f7 home: added zoom configuration 2024-08-15 15:54:58 +07:00
Tigor Hutasuhut d645ca2157 fort: disabled zellij 2024-08-15 10:36:50 +07:00
5 changed files with 16 additions and 1 deletions

View file

@ -29,6 +29,7 @@
./vscode.nix ./vscode.nix
./whatsapp.nix ./whatsapp.nix
./zathura.nix ./zathura.nix
./zoom.nix
./zsh.nix ./zsh.nix
./wezterm ./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"; foot.enable = lib.mkEnableOption "foot";
bruno.enable = lib.mkEnableOption "bruno"; bruno.enable = lib.mkEnableOption "bruno";
zoom.enable = lib.mkEnableOption "zoom";
}; };
programs = { programs = {

View file

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

View file

@ -72,7 +72,7 @@
home.programs = { home.programs = {
foot.enable = true; foot.enable = true;
zellij.enable = true; zellij.enable = false;
bruno.enable = true; bruno.enable = true;
}; };