noe.sh/shell.nix
2024-01-23 00:18:31 -05:00

5 lines
106 B
Nix

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