6 lines
111 B
Nix
6 lines
111 B
Nix
|
{ pkgs ? import <nixos-unstable> {} }:
|
||
|
pkgs.mkShell {
|
||
|
nativeBuildInputs = with pkgs; [ nodejs yarn ];
|
||
|
}
|
||
|
|