website/nix/shells/default/default.nix

9 lines
72 B
Nix

{
mkShell,
nodejs,
bun,
}:
mkShell {
packages = [nodejs bun];
}