queue/shell.nix

8 lines
105 B
Nix

{ pkgs ? import <nixpkgs> { } }:
with pkgs;
mkShell rec {
packages = [ nodejs nodePackages.pnpm ];
}