BitlBee: Difference between revisions
imported>Nix m add Software/Applications subcategory |
Mdaniels5757 (talk | contribs) m fix 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 = { | <syntaxhighlight lang="nix"> | ||
services.bitlbee = { | |||
enable = true; | enable = true; | ||
plugins = [ | plugins = [ | ||
| Line 11: | Line 12: | ||
# all plugins: `nix-env -qaP | grep bitlbee-` | # all plugins: `nix-env -qaP | grep bitlbee-` | ||
]; | ]; | ||
}</syntaxhighlight> | } | ||
</syntaxhighlight> | |||
== Enable libpurple plugins for bitlbee == | == Enable libpurple plugins for bitlbee == | ||
| Line 17: | Line 19: | ||
There is a build option to enable libpurple's plugin for bitlbee. | There is a build option to enable libpurple's plugin for bitlbee. | ||
<syntaxhighlight lang="nix">nixpkgs.config.bitlbee.enableLibPurple = true; | <syntaxhighlight lang="nix"> | ||
nixpkgs.config.bitlbee.enableLibPurple = true; | |||
services.bitlbee = { | services.bitlbee = { | ||
| Line 25: | Line 28: | ||
# all plugins: `nix-env -qaP | grep purple-` | # all plugins: `nix-env -qaP | grep purple-` | ||
]; | ]; | ||
}</syntaxhighlight> | } | ||
</syntaxhighlight> | |||
[[Category:Applications]] | [[Category:Applications]] | ||