shell.nix 193 B

12345678
  1. { pkgs ? import <nixpkgs> {} }:
  2. pkgs.mkShell {
  3. # nativeBuildInputs is usually what you want -- tools you need to run
  4. nativeBuildInputs = with pkgs; [
  5. nodePackages.pnpm
  6. ];
  7. }