From 3882a7074df48e348dbd7cc34d81bffc3f062b8f Mon Sep 17 00:00:00 2001 From: adikro Date: Thu, 26 Mar 2026 23:34:00 +0100 Subject: flake updates --- hm/soft/chat.nix | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 hm/soft/chat.nix (limited to 'hm/soft/chat.nix') diff --git a/hm/soft/chat.nix b/hm/soft/chat.nix new file mode 100644 index 0000000..61c1f92 --- /dev/null +++ b/hm/soft/chat.nix @@ -0,0 +1,18 @@ +{ + 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; [ + equibop + gajim + ]; + }; +} -- cgit v1.3