summary refs log tree commit diff stats
path: root/user/settings/chat.nix
diff options
context:
space:
mode:
authorAlan Pearce2020-05-20 11:19:18 +0200
committerAlan Pearce2020-05-20 11:19:18 +0200
commitabf37951b762c7577f4f1b95a813c7c3008abe1c (patch)
treee5c9acf34d8516d34d85f51d64bab99b4e960267 /user/settings/chat.nix
parent63dcecf0b94f1c1e39efa93655a86141aef3c24a (diff)
downloadnixfiles-abf37951b762c7577f4f1b95a813c7c3008abe1c.tar.lz
nixfiles-abf37951b762c7577f4f1b95a813c7c3008abe1c.tar.zst
nixfiles-abf37951b762c7577f4f1b95a813c7c3008abe1c.zip
Move chat programs into user module
Diffstat (limited to 'user/settings/chat.nix')
-rw-r--r--user/settings/chat.nix10
1 files changed, 10 insertions, 0 deletions
diff --git a/user/settings/chat.nix b/user/settings/chat.nix
new file mode 100644
index 00000000..98259fef
--- /dev/null
+++ b/user/settings/chat.nix
@@ -0,0 +1,10 @@
+{ config, pkgs, ... }:
+
+{
+  home.packages = with pkgs; [
+    signal-desktop
+    wire-desktop
+
+    weechat
+  ];
+}