From 20f9de6dd7b8f0d820b82a07dc54713838d549cc Mon Sep 17 00:00:00 2001 From: Sakooooo <78461130+Sakooooo@users.noreply.github.com> Date: Mon, 7 Aug 2023 01:31:09 +0300 Subject: [PATCH] remove this --- hosts/sakotop/configuration.nix | 1 - modules/desktop/chat/default.nix | 1 - modules/desktop/chat/weechat/default.nix | 21 --------------------- 3 files changed, 23 deletions(-) delete mode 100644 modules/desktop/chat/weechat/default.nix 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 - ]; - }; -}