diff options
author | Mark Nipper <nipsy@bitgnome.net> | 2025-05-23 11:30:03 -0700 |
---|---|---|
committer | Mark Nipper <nipsy@bitgnome.net> | 2025-05-23 11:30:03 -0700 |
commit | 39c1ff5628d6ea78ad3736c8a54ad5b836c61205 (patch) | |
tree | 23d5b2a7d526354ce6f4623b844b650198c861cf /hosts/common/optional/misc.nix | |
parent | 9f5139a2c1bfd95120946c62baa56f64c9dc2b35 (diff) | |
download | nix-39c1ff5628d6ea78ad3736c8a54ad5b836c61205.tar nix-39c1ff5628d6ea78ad3736c8a54ad5b836c61205.tar.gz nix-39c1ff5628d6ea78ad3736c8a54ad5b836c61205.tar.bz2 nix-39c1ff5628d6ea78ad3736c8a54ad5b836c61205.tar.lz nix-39c1ff5628d6ea78ad3736c8a54ad5b836c61205.tar.xz nix-39c1ff5628d6ea78ad3736c8a54ad5b836c61205.tar.zst nix-39c1ff5628d6ea78ad3736c8a54ad5b836c61205.zip |
Remove some uses of with
Diffstat (limited to 'hosts/common/optional/misc.nix')
-rw-r--r-- | hosts/common/optional/misc.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hosts/common/optional/misc.nix b/hosts/common/optional/misc.nix index cb44055..df71ea0 100644 --- a/hosts/common/optional/misc.nix +++ b/hosts/common/optional/misc.nix @@ -30,8 +30,8 @@ plugins = with availablePlugins; [ (perl.withPackages(p: [ p.PodParser ])) ] ++ [ python ]; - scripts = with pkgs.weechatScripts; [ - wee-slack + scripts = [ + pkgs.weechatScripts.wee-slack ]; }; }) |