weechat: add bitlbee
This commit is contained in:
parent
fcff7d57f2
commit
d8209f815b
1 changed files with 25 additions and 1 deletions
|
@ -8,13 +8,37 @@
|
||||||
|
|
||||||
{
|
{
|
||||||
|
|
||||||
|
# configure weechat
|
||||||
services.weechat = {
|
services.weechat = {
|
||||||
enable = true;
|
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
|
# otherwise xterm is the only thing that works
|
||||||
environment.systemPackages = [ pkgs.rxvt_unicode ];
|
environment.systemPackages = [ pkgs.rxvt_unicode ];
|
||||||
|
|
||||||
backup.all.restic.dirs = [ config.services.weechat.root ];
|
backup.all.restic.dirs = [
|
||||||
|
config.services.weechat.root
|
||||||
|
];
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue