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

14 lines
281 B
Nix
Raw Normal View History

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