7 lines
140 B
Nix
7 lines
140 B
Nix
{ pkgs ? import <nixpkgs> {} }: pkgs.mkShell {
|
|
buildInputs = with pkgs; [
|
|
nodePackages.serve
|
|
nodePackages.prettier
|
|
bun
|
|
];
|
|
}
|