This commit is contained in:
41666 2024-03-23 16:25:14 -04:00
commit 3ea8e0e7f3
3 changed files with 49 additions and 0 deletions

5
shell.nix Normal file
View file

@ -0,0 +1,5 @@
{ pkgs ? import <nixpkgs> {} }: pkgs.mkShell {
buildInputs = with pkgs; [
nodePackages.serve
];
}