about summary refs log tree commit diff
path: root/users/wpcarro/boilerplate/typescript/shell.nix
blob: a3ae929ef4462f5be9a674e122fcf435db22e2c8 (plain) (blame)
1
2
3
4
5
6
7
8
{ pkgs, ... }:

pkgs.mkShell {
  buildInputs = with pkgs; [
    nodejs
    yarn
  ];
}