add weechat

This commit is contained in:
Sakooooo 2024-03-05 18:51:37 +04:00
parent 2390130d37
commit 85d473dc66
Signed by: sako
GPG key ID: FE52FD65B76E4751
5 changed files with 27 additions and 0 deletions

View file

@ -42,6 +42,7 @@
discord.enable = true; discord.enable = true;
teams.enable = true; teams.enable = true;
telegram.enable = true; telegram.enable = true;
weechat.enable = true;
}; };
game = { game = {
lutris.enable = true; lutris.enable = true;

View file

@ -39,6 +39,7 @@
discord.enable = true; discord.enable = true;
teams.enable = true; teams.enable = true;
telegram.enable = true; telegram.enable = true;
weechat.enable = true;
}; };
apps = { apps = {
nemo.enable = true; nemo.enable = true;

View file

@ -114,6 +114,9 @@
nextcloud.enable = true; nextcloud.enable = true;
pass.enable = true; pass.enable = true;
}; };
chat = {
weechat.enable = true;
};
}; };
dev = { dev = {
editors = { editors = {

View file

@ -5,5 +5,6 @@
./zoom ./zoom
./discord ./discord
./telegram ./telegram
./weechat
]; ];
} }

View file

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