aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--home/profiles/messaging/default.nix14
1 files changed, 13 insertions, 1 deletions
diff --git a/home/profiles/messaging/default.nix b/home/profiles/messaging/default.nix
index 3d8a437..322df5f 100644
--- a/home/profiles/messaging/default.nix
+++ b/home/profiles/messaging/default.nix
@@ -303,7 +303,19 @@ in
ispell
element-desktop
- weechat
+ (weechat.override {
+ configure = { availablePlugins, ... }: {
+ plugins = [
+ (availablePlugins.python.withPackages (ps: with ps; [
+ potr
+ pycrypto
+ pync
+ ]))
+ availablePlugins.perl
+ availablePlugins.lua
+ ];
+ };
+ })
];
}
]);