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-11 10:45:19 -06:00

18 lines
277 B
Nix

let
pkgs = import <nixpkgs> {};
in
pkgs.mkShell {
buildInputs = [
pkgs.nodejs
pkgs.yarn
pkgs.firebase-tools
];
# Install Next.js via yarn in the shell
shellHook = ''
if ! [ -d "node_modules" ]; then
yarn add next react react-dom
fi
'';
}