summary refs log tree commit diff stats
path: root/user
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
parent63dcecf0b94f1c1e39efa93655a86141aef3c24a (diff)
downloadnixfiles-abf37951b762c7577f4f1b95a813c7c3008abe1c.tar.lz
nixfiles-abf37951b762c7577f4f1b95a813c7c3008abe1c.tar.zst
nixfiles-abf37951b762c7577f4f1b95a813c7c3008abe1c.zip
Move chat programs into user module
Diffstat (limited to 'user')
-rw-r--r--user/satoshipad.nix1
-rw-r--r--user/settings/chat.nix10
2 files changed, 11 insertions, 0 deletions
diff --git a/user/satoshipad.nix b/user/satoshipad.nix
index e09c79ea..e2a513d5 100644
--- a/user/satoshipad.nix
+++ b/user/satoshipad.nix
@@ -5,6 +5,7 @@
     ../private
 
     ./settings/base.nix
+    ./settings/chat.nix
     ./settings/development/base.nix
     ./settings/dunst.nix
     ./settings/emacs.nix
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
+  ];
+}