{ pkgs, ... }: { environment.systemPackages = with pkgs; [ weechat ]; nixpkgs.overlays = [ ( self: super: { weechat = super.weechat.override { configure = {availablePlugins, ...}: { scripts = with pkgs.weechatScripts; [ weechat-matrix weechat-go weechat-notify-send ]; plugins = builtins.attrValues availablePlugins; }; }; } ) ]; }