miom.space/shell.nix

15 lines
213 B
Nix

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = with pkgs; [
nodejs-16_x
deno
nodePackages.json
nodePackages.triton
];
shellHook = ''
eval "$(triton env --triton)"
'';
}