remove this

This commit is contained in:
Sakooooo 2023-08-07 01:31:09 +03:00
parent 6d4effc932
commit 20f9de6dd7
Signed by: sako
GPG key ID: 3FD715D87D7725E0
3 changed files with 0 additions and 23 deletions

View file

@ -41,7 +41,6 @@
}; };
chat = { chat = {
discord.enable = true; discord.enable = true;
weechat.enable = true;
}; };
game = { game = {
wine.enable = true; wine.enable = true;

View file

@ -1,6 +1,5 @@
{ {
imports = [ imports = [
./discord ./discord
./weechat
]; ];
} }

View file

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