This commit is contained in:
iFargle 2023-08-29 13:54:55 +09:00
parent 2c87d2eeec
commit c7353b3cc3

View file

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