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