alys.phundrak.com/shell.nix

10 lines
161 B
Nix
Raw Normal View History

2024-03-09 09:44:46 +00:00
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
nativeBuildInputs = with pkgs.buildPackages; [
corepack
];
shellHook = ''
yarn set version stable
'';
}