queue/shell.nix

8 lines
105 B
Nix
Raw Normal View History

2023-03-22 12:21:50 +00:00
{ pkgs ? import <nixpkgs> { } }:
with pkgs;
mkShell rec {
packages = [ nodejs nodePackages.pnpm ];
}