10 lines
173 B
Nix
10 lines
173 B
Nix
|
{ pkgs ? import <nixos-unstable> {} }:
|
||
|
pkgs.mkShell {
|
||
|
nativeBuildInputs = with pkgs; [ nodejs-18_x yarn ];
|
||
|
|
||
|
shellHook = ''
|
||
|
yarn set version berry
|
||
|
'';
|
||
|
}
|
||
|
|