nix/nixos/common/software/cli/weechat.nix

11 lines
282 B
Nix
Raw Normal View History

2023-08-29 06:57:33 +02:00
self: super: {
2023-08-29 06:54:55 +02:00
weechat = super.weechat.override {
configure = { availablePlugins, ... }: {
2023-08-29 06:57:33 +02:00
scripts = with super.weechatScripts; [
weechat-matrix
weechat-go
weechat-notify-send
];
2023-08-29 06:54:55 +02:00
};
2023-08-29 06:52:14 +02:00
};
}