This commit is contained in:
iFargle 2023-08-29 13:57:33 +09:00
parent c7353b3cc3
commit 547e944c8e

View file

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