summaryrefslogtreecommitdiff
path: root/hm/soft/chat.nix
blob: d7f00200a778ecf96d216388f3b1c4c07889f621 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
  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; [
      simplex-chat-desktop
      signal-desktop
      equibop
      gajim
      element-desktop
    ];
  };
}