diff options
author | Alan Pearce | 2020-05-20 11:19:18 +0200 |
---|---|---|
committer | Alan Pearce | 2020-05-20 11:19:18 +0200 |
commit | abf37951b762c7577f4f1b95a813c7c3008abe1c (patch) | |
tree | e5c9acf34d8516d34d85f51d64bab99b4e960267 /user | |
parent | 63dcecf0b94f1c1e39efa93655a86141aef3c24a (diff) | |
download | nixfiles-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.nix | 1 | ||||
-rw-r--r-- | user/settings/chat.nix | 10 |
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 + ]; +} |