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

27 lines
No EOL
826 B
Nix

{ pkgs, ... }: {
environment.systemPackages = with pkgs; [
weechat
];
# Per the README, set matrix-sso-helper in your $PATH
environment.interactiveShellInit = ''
alias matrix_sso_helper=${pkgs.weechatScripts.weechat-matrix}/bin/matrix_sso_helper
'';
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;
};
};
}
)
];
}