1
Fork 0
keyswirl/layout-lens/shell.nix

10 lines
154 B
Nix
Raw Normal View History

2023-02-02 00:05:33 +01:00
{ pkgs ? import <nixpkgs> { } }:
with pkgs;
mkShell {
buildInputs = with pkgs; with nodePackages_latest; [
typescript
nodejs
ts-node
];
}