nix/nixos/common/software/cli/weechat.nix
2023-08-29 14:03:37 +09:00

22 lines
No EOL
624 B
Nix

{ 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;
};
};
}
)
];
}