mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 12:29:19 -08:00
25 lines
521 B
Nix
25 lines
521 B
Nix
{pkgs, ...}: {
|
|
home-manager.users.kat.programs.weechat = {
|
|
plugins = {
|
|
perl = {
|
|
enable = true;
|
|
};
|
|
};
|
|
scripts = with pkgs.weechatScripts; [
|
|
highmon
|
|
parse_relayed_msg
|
|
];
|
|
config.plugins.var.perl = {
|
|
highmon = {
|
|
short_names = "on";
|
|
output = "buffer";
|
|
merge_private = "on";
|
|
alignment = "nchannel,nick";
|
|
};
|
|
parse_relayed_msg = {
|
|
servername = "espernet";
|
|
supported_bot_names = "cord";
|
|
};
|
|
};
|
|
};
|
|
}
|