11 lines
119 B
Nix
11 lines
119 B
Nix
{
|
|
pkgs ? import <nixpkgs> { },
|
|
}:
|
|
|
|
pkgs.mkShell {
|
|
packages = [
|
|
pkgs.nodejs
|
|
pkgs.pnpm
|
|
pkgs.biome
|
|
];
|
|
}
|