nix-configs/shell/system76-docs/shell.nix
2024-02-14 11:00:10 -07:00

13 lines
236 B
Nix

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
nativeBuildInputs = with pkgs; [
nodejs-18_x
nodePackages.npm
];
shellHook =
''
cd /home/aaronh/Projects/system76/docs
npm ci
npm start
'';
}