nix/nixos/common/software/cli/weechat.nix
2023-08-29 13:57:33 +09:00

11 lines
No EOL
282 B
Nix

self: super: {
weechat = super.weechat.override {
configure = { availablePlugins, ... }: {
scripts = with super.weechatScripts; [
weechat-matrix
weechat-go
weechat-notify-send
];
};
};
}