summaryrefslogtreecommitdiff
path: root/hm/soft/chat.nix
blob: b8866568c169bccc5a134e1e53651bc780bebb5d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
  config,
  pkgs,
  lib,
  ...
}:
let
  cfg = config.hm.soft.chat;
in
{
  options.hm.soft.chat.enable = lib.mkEnableOption "chatting apps";
  config = lib.mkIf cfg.enable {
    home.packages = with pkgs; [
      telegram-desktop
      simplex-chat-desktop
      signal-desktop
      equibop
      gajim
      element-desktop
    ];
  };
}