From 547e944c8e91d120a60d1a5db0f4ebac680e639e Mon Sep 17 00:00:00 2001 From: iFargle Date: Tue, 29 Aug 2023 13:57:33 +0900 Subject: [PATCH] test --- nixos/common/software/cli/weechat.nix | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/nixos/common/software/cli/weechat.nix b/nixos/common/software/cli/weechat.nix index 1e2ff1ba..9f995f2f 100644 --- a/nixos/common/software/cli/weechat.nix +++ b/nixos/common/software/cli/weechat.nix @@ -1,13 +1,11 @@ -{ pkgs, ... }: self: super: { - environment.systemPackages = [ pkgs.weechat ]; - +self: super: { weechat = super.weechat.override { configure = { availablePlugins, ... }: { - scripts = with super.weechatScripts; [ - weechat-matrix - weechat-go - weechat-notify-send - ]; + scripts = with super.weechatScripts; [ + weechat-matrix + weechat-go + weechat-notify-send + ]; }; }; } \ No newline at end of file