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

17 lines
253 B
Nix

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