This commit is contained in:
2025-02-08 14:24:51 -06:00
parent d643be301f
commit 769e99d4c3
136 changed files with 3759 additions and 444 deletions
+15
View File
@@ -0,0 +1,15 @@
{ pkgs ? import <nixpkgs> {} }:
let
nodePackages = pkgs.nodePackages;
in
pkgs.mkShell {
buildInputs = [
nodePackages.nodejs
nodePackages.yarn
];
shellHook = ''
echo "Welcome to the bakery-template development environment!"
'';
}