From 55826afb54a1d8ddf758eb7900679ca7150cc271 Mon Sep 17 00:00:00 2001 From: buffet Date: Tue, 2 Jul 2024 17:06:33 +0200 Subject: [PATCH] fix: weechat set up --- hosts/ami/weechat.nix | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/hosts/ami/weechat.nix b/hosts/ami/weechat.nix index 6959737..2a269d1 100644 --- a/hosts/ami/weechat.nix +++ b/hosts/ami/weechat.nix @@ -6,10 +6,12 @@ in { enable = true; binary = let weechat = pkgs.weechat.override { - scripts = with pkgs.weechatScripts; [ - autosort - highmon - ]; + configure = _: { + scripts = with pkgs.weechatScripts; [ + autosort + highmon + ]; + }; }; in "${weechat}/bin/weechat-headless"; };