From 6075931eb0a4956acf9be9c75304c4374992dd09 Mon Sep 17 00:00:00 2001 From: iFargle Date: Tue, 29 Aug 2023 13:52:14 +0900 Subject: [PATCH] Testing weechat --- nixos/common/software/cli/weechat.nix | 14 ++++++++++++++ nixos/default.nix | 3 +++ 2 files changed, 17 insertions(+) create mode 100644 nixos/common/software/cli/weechat.nix diff --git a/nixos/common/software/cli/weechat.nix b/nixos/common/software/cli/weechat.nix new file mode 100644 index 00000000..206d20d9 --- /dev/null +++ b/nixos/common/software/cli/weechat.nix @@ -0,0 +1,14 @@ +self: super: +{ + environment.systemPackages = [ weechat ]; + + weechat = super.weechat.override { + configure = { availablePlugins, ... }: { + scripts = with super.weechatScripts; [ + weechat-matrix + weechat-go + weechat-notify-send + ]; + }; + }; +} \ No newline at end of file diff --git a/nixos/default.nix b/nixos/default.nix index 398d3df6..a4161e5f 100644 --- a/nixos/default.nix +++ b/nixos/default.nix @@ -9,6 +9,9 @@ ./common/services/fwupd.nix ./common/services/gnupg-agent.nix + # CLI Software + ./common/software/cli/weechat.nix + # NixOS Modules ./common/modules/fonts.nix # Font Configs ./common/modules/networking.nix # Initial Networking configs