tcl-guessr/shell.nix

10 lines
123 B
Nix

{
pkgs ? import <nixpkgs> { },
}:
pkgs.mkShellNoCC {
buildInputs = with pkgs; [
bun
nodejs
wrangler
];
}