weechat overlay
This commit is contained in:
parent
547e944c8e
commit
a38856a2ed
1 changed files with 21 additions and 10 deletions
|
@ -1,11 +1,22 @@
|
|||
self: super: {
|
||||
weechat = super.weechat.override {
|
||||
configure = { availablePlugins, ... }: {
|
||||
scripts = with super.weechatScripts; [
|
||||
weechat-matrix
|
||||
weechat-go
|
||||
weechat-notify-send
|
||||
];
|
||||
};
|
||||
};
|
||||
{ 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;
|
||||
};
|
||||
};
|
||||
}
|
||||
)
|
||||
];
|
||||
}
|
Loading…
Reference in a new issue