22 lines
No EOL
624 B
Nix
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;
|
|
};
|
|
};
|
|
}
|
|
)
|
|
];
|
|
} |