From aefe01700a97c76db15b10a75865bb8cc91a66be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20B=C3=A4dorf?= Date: Sun, 16 Jan 2022 16:31:39 +0100 Subject: [PATCH] Add triton to nix shell --- shell.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/shell.nix b/shell.nix index 4a24627..fecb5b2 100644 --- a/shell.nix +++ b/shell.nix @@ -3,9 +3,11 @@ mkShell { buildInputs = [ nodejs deno + nodePackages.json + nodePackages.triton ]; shellHook = '' - export PATH="$PATH:/home/ben/.deno/bin" + eval "$(triton env --triton)" ''; }