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

13 lines
329 B
Nix
Raw Normal View History

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