noe.sh/shell.nix
2024-03-25 22:12:03 -04:00

6 lines
132 B
Nix

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