diff options
Diffstat (limited to 'hm/soft/chat.nix')
| -rw-r--r-- | hm/soft/chat.nix | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/hm/soft/chat.nix b/hm/soft/chat.nix index b886656..90a3887 100644 --- a/hm/soft/chat.nix +++ b/hm/soft/chat.nix @@ -2,14 +2,24 @@ config, pkgs, lib, + inputs, ... }: let cfg = config.hm.soft.chat; in { + imports = [ inputs.nixcord.homeModules.nixcord ]; + options.hm.soft.chat.enable = lib.mkEnableOption "chatting apps"; config = lib.mkIf cfg.enable { + programs.nixcord = { + enable = true; + discord = { + vencord.enable = false; + equicord.enable = true; + }; + }; home.packages = with pkgs; [ telegram-desktop simplex-chat-desktop |
