BitlBee: Difference between revisions

From NixOS Wiki
imported>Fadenb
m →‎Basic configuration: syntaxhighlight
imported>Nix
m add Software/Applications subcategory
 
(2 intermediate revisions by 2 users not shown)
Line 15: Line 15:
== Enable libpurple plugins for bitlbee ==
== Enable libpurple plugins for bitlbee ==


'''PLEASE SHARE YOUR KNOWLEDGE HERE'''
There is a build option to enable libpurple's plugin for bitlbee.
 
<syntaxhighlight lang="nix">nixpkgs.config.bitlbee.enableLibPurple = true;
 
services.bitlbee = {
  enable = true;
  libpurple_plugins = [
    pkgs.purple-hangout
    # all plugins: `nix-env -qaP | grep purple-`
  ];
}</syntaxhighlight>
 
[[Category:Applications]]

Latest revision as of 05:39, 20 September 2021

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-`
  ];
}