ps2.live-old/shell.nix
2024-07-15 14:13:23 -04:00

8 lines
151 B
Nix

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