nix/nixos/common/software/cli/weechat.nix

22 lines
624 B
Nix
Raw Normal View History

2023-08-29 07:03:37 +02:00
{ 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;
};
};
}
)
];
2023-08-29 06:52:14 +02:00
}