summaryrefslogtreecommitdiff
path: root/hm/soft/chat.nix
diff options
context:
space:
mode:
authoradikro <adikro@disroot.org>2026-03-26 23:34:00 +0100
committeradikro <adikro@disroot.org>2026-03-26 23:34:00 +0100
commit3882a7074df48e348dbd7cc34d81bffc3f062b8f (patch)
tree0ed4fde79905da7d26e20d4f214704e146e3509f /hm/soft/chat.nix
parent1d40f7be90fa740ce34d7c0873b4acf205bca06a (diff)
flake updates
Diffstat (limited to 'hm/soft/chat.nix')
-rw-r--r--hm/soft/chat.nix18
1 files changed, 18 insertions, 0 deletions
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
+ ];
+ };
+}