1
Fork 0
keyswirl/shell.nix
2023-02-02 00:05:33 +01:00

10 lines
154 B
Nix

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