stockholm/makefu/2configs/bitlbee.nix

11 lines
274 B
Nix
Raw Normal View History

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