12 lines
234 B
Nix
12 lines
234 B
Nix
|
self: super:
|
||
|
{
|
||
|
weechat = super.weechat.override {
|
||
|
configure = { availablePlugins, ... }: {
|
||
|
scripts = with super.weechatScripts; [
|
||
|
weechat-matrix
|
||
|
weechat-go
|
||
|
weechat-notify-send
|
||
|
];
|
||
|
};
|
||
|
};
|
||
|
}
|