les-particules-org/default.nix

10 lines
173 B
Nix
Raw Normal View History

2023-02-04 18:40:41 +00:00
{ pkgs ? import <nixos-unstable> {} }:
pkgs.mkShell {
nativeBuildInputs = with pkgs; [ nodejs-18_x yarn ];
shellHook = ''
yarn set version berry
'';
}