]> git.immae.eu Git - perso/Immae/Config/Nix.git/blame - overlays/weechat/default.nix
Upgrade to nixos-unstable
[perso/Immae/Config/Nix.git] / overlays / weechat / default.nix
CommitLineData
676e68e3
IB
1self: super: {
2 weechat = super.weechat.override {
3 configure = { availablePlugins, ... }: {
4 plugins = with self; with availablePlugins; [
258dd18b 5 (python.withPackages (ps: with ps; [websocket_client emoji]))
676e68e3
IB
6 perl
7 ruby
8 ];
9 };
10 };
11
12}