nixos-config/2configs/bitlbee.nix

11 lines
274 B
Nix
Raw Normal View History

2018-09-08 12:47:27 +02:00
{pkgs, ... }:
{
services.bitlbee = {
enable = true;
2022-09-23 22:19:00 +02:00
# libpurple_plugins = [ pkgs.telegram-purple pkgs.pidgin-skypeweb];
2023-06-03 15:30:09 +02:00
plugins = [ pkgs.bitlbee-mastodon ];
2018-09-08 12:47:27 +02:00
};
2022-06-06 21:15:49 +02:00
users.users.makefu.packages = with pkgs; [ weechat tmux ];
state = [ "/var/lib/bitlbee" ];
2018-09-08 12:47:27 +02:00
}