1
Fork 0
keyswirl/layout-lens/shell.nix
2023-10-22 16:10:53 +02:00

10 lines
154 B
Nix

{ pkgs ? import <nixpkgs> { } }:
with pkgs;
mkShell {
buildInputs = with pkgs; with nodePackages_latest; [
typescript
nodejs
ts-node
];
}