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

13 lines
No EOL
329 B
Nix

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