summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLLLL Colonq <llll@colonq>2024-11-14 22:41:38 -0500
committerLLLL Colonq <llll@colonq>2024-11-14 22:41:38 -0500
commitfdb4f1c6155a178aafb396c70ff2ce5ecc46e796 (patch)
tree040eb1c370e5d5531ae5b89e3fc6d836b1890d28
parent37ef435bfcfd71e8881fe2907d9db23ca5da879f (diff)
Whoops, let's get jq too
-rw-r--r--flake.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/flake.nix b/flake.nix
index bfdc468..ca71b8b 100644
--- a/flake.nix
+++ b/flake.nix
@@ -25,7 +25,7 @@
'';
};
lldap-cli-wrapped = pkgs.writeShellScriptBin "lldap-cli" ''
- export PATH=${pkgs.lldap}/bin:${pkgs.curl}/bin:$PATH
+ export PATH=${pkgs.lldap}/bin:${pkgs.curl}/bin:${pkgs.jq}/bin:$PATH
${lldap-cli}/bin/lldap-cli "$@"
'';