diff options
| author | adikro <adikro@disroot.org> | 2026-05-31 23:41:20 +0200 |
|---|---|---|
| committer | adikro <adikro@disroot.org> | 2026-05-31 23:41:20 +0200 |
| commit | 66eff7dbb117ccf9cbf743036f058d5dcb0a78e6 (patch) | |
| tree | 2bfc78514ff3c3d2b3ebf184b4e1608e454d11e2 /hm/soft/chat.nix | |
| parent | b02651ac4683d6f116f912d79a7b158c127e4ea2 (diff) | |
updated, revised some modules, cleaned up secrets management
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 |
