14 lines
No EOL
281 B
Nix
14 lines
No EOL
281 B
Nix
self: super:
|
|
{
|
|
environment.systemPackages = [ weechat ];
|
|
|
|
weechat = super.weechat.override {
|
|
configure = { availablePlugins, ... }: {
|
|
scripts = with super.weechatScripts; [
|
|
weechat-matrix
|
|
weechat-go
|
|
weechat-notify-send
|
|
];
|
|
};
|
|
};
|
|
} |