13 lines
No EOL
329 B
Nix
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
|
|
];
|
|
};
|
|
};
|
|
} |