From bfee493e09e2e24f409947a4e35f6768970d64cd Mon Sep 17 00:00:00 2001 From: Aaron Honeycutt Date: Wed, 14 Feb 2024 11:00:10 -0700 Subject: [PATCH] shell/system76-docs: add shellHooks for the shell --- shell/system76-docs/shell.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/shell/system76-docs/shell.nix b/shell/system76-docs/shell.nix index bb0ad96..80ae480 100644 --- a/shell/system76-docs/shell.nix +++ b/shell/system76-docs/shell.nix @@ -4,4 +4,10 @@ nodejs-18_x nodePackages.npm ]; + shellHook = + '' + cd /home/aaronh/Projects/system76/docs + npm ci + npm start + ''; }