BitlBee: Difference between revisions
imported>Makefu initial batch of nixos-users |
imported>Fadenb m →Basic configuration: syntaxhighlight |
||
Line 5: | Line 5: | ||
Configure bitlbee as a service running, with plugins enabled. All options <code>nixos-option services.bitlbee</code>. | Configure bitlbee as a service running, with plugins enabled. All options <code>nixos-option services.bitlbee</code>. | ||
< | <syntaxhighlight lang="nix">services.bitlbee = { | ||
enable = true; | enable = true; | ||
plugins = [ | plugins = [ | ||
Line 11: | Line 11: | ||
# all plugins: `nix-env -qaP | grep bitlbee-` | # all plugins: `nix-env -qaP | grep bitlbee-` | ||
]; | ]; | ||
}</ | }</syntaxhighlight> | ||
== Enable libpurple plugins for bitlbee == | == Enable libpurple plugins for bitlbee == | ||
'''PLEASE SHARE YOUR KNOWLEDGE HERE''' | '''PLEASE SHARE YOUR KNOWLEDGE HERE''' |
Revision as of 08:53, 27 August 2017
BitlBee is a gateway (daemon / client) for IRC.
Basic configuration
Configure bitlbee as a service running, with plugins enabled. All options nixos-option services.bitlbee
.
services.bitlbee = {
enable = true;
plugins = [
pkgs.bitlbee-facebook
# all plugins: `nix-env -qaP | grep bitlbee-`
];
}
Enable libpurple plugins for bitlbee
PLEASE SHARE YOUR KNOWLEDGE HERE