website/nix/shells/default/default.nix

9 lines
72 B
Nix
Raw Permalink Normal View History

2024-04-29 17:34:05 +00:00
{
mkShell,
nodejs,
bun,
}:
mkShell {
packages = [nodejs bun];
}