weechat: add bitlbee

This commit is contained in:
Ingolf Wagner 2019-11-18 08:57:17 +13:00
parent fcff7d57f2
commit d8209f815b
No known key found for this signature in database
GPG key ID: 76BF5F1928B9618B

View file

@ -8,13 +8,37 @@
{
# configure weechat
services.weechat = {
enable = true;
};
# configure bitlbee
services.bitlbee = {
enable = true;
libpurple_plugins = [
#pkgs.pidgin-otr
#pkgs.purple-facebook
#pkgs.purple-discord
#pkgs.purple-matrix
#pkgs.purple-hangouts
#pkgs.pidgin-latex
#pkgs.pidgin-opensteamworks
#pkgs.pidgin-skypeweb
pkgs.telegram-purple
#pkgs.purple-lurch
];
plugins = [
pkgs.bitlbee-facebook
pkgs.bitlbee-steam
];
};
# otherwise xterm is the only thing that works
environment.systemPackages = [ pkgs.rxvt_unicode ];
backup.all.restic.dirs = [ config.services.weechat.root ];
backup.all.restic.dirs = [
config.services.weechat.root
];
}