remove whatsapp module because whatsapp-for-linux is bad

This commit is contained in:
Sakooooo 2024-08-27 17:35:10 +04:00
parent 7ea88f1ee5
commit a95d871b74
Signed by: sako
GPG key ID: FE52FD65B76E4751
4 changed files with 0 additions and 18 deletions

View file

@ -40,7 +40,6 @@
chromium.enable = true;
};
chat = {
whatsapp.enable = true;
zoom.enable = true;
discord.enable = true;
teams.enable = true;

View file

@ -38,7 +38,6 @@
chromium.enable = true;
};
chat = {
whatsapp.enable = true;
zoom.enable = true;
discord.enable = true;
signal.enable = true;

View file

@ -1,7 +1,6 @@
{
imports = [
./teams
./whatsapp
./zoom
./discord
./telegram

View file

@ -1,15 +0,0 @@
{ outputs, options, config, lib, pkgs, ...}:
let
cfg = config.modules.desktop.chat.whatsapp;
in
{
options.modules.desktop.chat.whatsapp = {
enable = lib.mkEnableOption false;
};
config = lib.mkIf cfg.enable {
users.users.sako.packages = with pkgs; [
whatsapp-for-linux
];
};
}