mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 12:29:19 -08:00
30 lines
608 B
Nix
30 lines
608 B
Nix
{
|
|
pkgs,
|
|
inputs,
|
|
...
|
|
}: {
|
|
home-manager.users.kat.programs.weechat = {
|
|
plugins = {
|
|
perl = {
|
|
enable = true;
|
|
};
|
|
};
|
|
scripts = with inputs.arcexprs.legacyPackages.${pkgs.system}.weechatScripts;
|
|
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";
|
|
};
|
|
};
|
|
};
|
|
}
|