Move slack and zoom

This commit is contained in:
Oliver Davies 2025-04-05 09:00:00 +01:00
parent 8a6fa82419
commit d9e982c240
7 changed files with 2 additions and 40 deletions

View file

@ -9,8 +9,6 @@
kdenlive.enable = true;
mpv.enable = true;
pocket-casts.enable = true;
slack.enable = true;
tmux-sessionizer.enable = true;
zoom.enable = true;
};
}

View file

@ -17,10 +17,8 @@
};
pocket-casts.enable = true;
slack.enable = true;
tmux.enable = true;
tmux-sessionizer.enable = true;
zoom.enable = true;
};
home.packages = with pkgs; [

View file

@ -16,10 +16,8 @@
};
pocket-casts.enable = true;
slack.enable = true;
tmux.enable = true;
tmux-sessionizer.enable = true;
zoom.enable = true;
};
home.packages = with pkgs; [

View file

@ -52,10 +52,12 @@
gtypist
pam_gnupg
peek
slack
sxiv
ttyper
yt-dlp
zeroad
zoom-us
];
zramSwap.enable = true;

View file

@ -3,7 +3,5 @@
./flameshot.nix
./gtk.nix
./media
./slack.nix
./zoom.nix
];
}

View file

@ -1,16 +0,0 @@
{
config,
lib,
pkgs,
...
}:
with lib;
{
options.homeManagerModules.slack.enable = mkEnableOption "Enable Slack";
config = mkIf config.homeManagerModules.slack.enable {
home.packages = with pkgs; [ slack ];
};
}

View file

@ -1,16 +0,0 @@
{
config,
lib,
pkgs,
...
}:
with lib;
{
options.homeManagerModules.zoom.enable = mkEnableOption "Enable zoom";
config = mkIf config.homeManagerModules.zoom.enable {
home.packages = with pkgs; [ zoom-us ];
};
}