This repository has been archived on 2026-09-03. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
itsthevine/default.nix
T
2025-02-08 14:24:51 -06:00

15 lines
274 B
Nix

{ pkgs ? import <nixpkgs> {} }:
let
nodePackages = pkgs.nodePackages;
in
pkgs.mkShell {
buildInputs = [
nodePackages.nodejs
nodePackages.yarn
];
shellHook = ''
echo "Welcome to the bakery-template development environment!"
'';
}