noe.sh/shell.nix
2025-01-05 21:16:51 -08:00

7 lines
140 B
Nix

{ pkgs ? import <nixpkgs> {} }: pkgs.mkShell {
buildInputs = with pkgs; [
nodePackages.serve
nodePackages.prettier
bun
];
}