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