Difference between revisions of "BitlBee"

From NixOS Wiki
Jump to: navigation, search
(Add warning about the new wiki)
m (rollback unauthorized mass edits)
Tag: Rollback
 
Line 1: Line 1:
{{warning|1=You are reading an article on the deprecated unofficial wiki. For the up to date version of this article, see https://wiki.nixos.org/wiki/BitlBee.}}
 
 
 
[https://en.wikipedia.org/wiki/BitlBee BitlBee] is a gateway (daemon / client) for IRC.
 
[https://en.wikipedia.org/wiki/BitlBee BitlBee] is a gateway (daemon / client) for IRC.
  

Latest revision as of 10:54, 6 April 2024

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

There is a build option to enable libpurple's plugin for bitlbee.

nixpkgs.config.bitlbee.enableLibPurple = true;

services.bitlbee = {
  enable = true;
  libpurple_plugins = [
    pkgs.purple-hangout
    # all plugins: `nix-env -qaP | grep purple-`
  ];
}