diff options
author | Mark Nipper <nipsy@bitgnome.net> | 2024-04-18 20:36:29 -0700 |
---|---|---|
committer | Mark Nipper <nipsy@bitgnome.net> | 2024-04-18 20:36:29 -0700 |
commit | cebca790dfe678347899a59f12c36e4a071771e1 (patch) | |
tree | e64bb760a501f682817f945781b42468c7654020 /hosts/common/optional/misc.nix | |
parent | f153e5b6dfcc228f4ef8ce00f4044c6cefa5d381 (diff) | |
download | nix-cebca790dfe678347899a59f12c36e4a071771e1.tar nix-cebca790dfe678347899a59f12c36e4a071771e1.tar.gz nix-cebca790dfe678347899a59f12c36e4a071771e1.tar.bz2 nix-cebca790dfe678347899a59f12c36e4a071771e1.tar.lz nix-cebca790dfe678347899a59f12c36e4a071771e1.tar.xz nix-cebca790dfe678347899a59f12c36e4a071771e1.tar.zst nix-cebca790dfe678347899a59f12c36e4a071771e1.zip |
Add weechat options
Diffstat (limited to 'hosts/common/optional/misc.nix')
-rw-r--r-- | hosts/common/optional/misc.nix | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/hosts/common/optional/misc.nix b/hosts/common/optional/misc.nix index 60565a9..03d112a 100644 --- a/hosts/common/optional/misc.nix +++ b/hosts/common/optional/misc.nix @@ -23,6 +23,12 @@ radeontop speedtest-cli sshfs - weechat + (weechat.override { + configure = { availablePlugins, ...}: { + plugins = with availablePlugins; [ + (perl.withPackages(p: [ p.PodParser ])) + ] ++ [ python ]; + }; + }) ]; } |