diff --git a/hosts/sakotop/configuration.nix b/hosts/sakotop/configuration.nix index 37641cfc..8dcbc1b1 100644 --- a/hosts/sakotop/configuration.nix +++ b/hosts/sakotop/configuration.nix @@ -41,7 +41,6 @@ }; chat = { discord.enable = true; - weechat.enable = true; }; game = { wine.enable = true; diff --git a/modules/desktop/chat/default.nix b/modules/desktop/chat/default.nix index 933daecb..52b27062 100644 --- a/modules/desktop/chat/default.nix +++ b/modules/desktop/chat/default.nix @@ -1,6 +1,5 @@ { imports = [ ./discord - ./weechat ]; } diff --git a/modules/desktop/chat/weechat/default.nix b/modules/desktop/chat/weechat/default.nix deleted file mode 100644 index 1bffead2..00000000 --- a/modules/desktop/chat/weechat/default.nix +++ /dev/null @@ -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 - ]; - }; -}