From 779f96afe1294ec5fe3a2210015d48d0a727fffc Mon Sep 17 00:00:00 2001 From: Tim Van Baak Date: Mon, 18 Dec 2023 09:51:03 -0800 Subject: [PATCH] Add devshell help text --- flake.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/flake.nix b/flake.nix index d904166..ab63a76 100644 --- a/flake.nix +++ b/flake.nix @@ -32,6 +32,14 @@ pkgs.rsync pkgs.pagefind ]; + shellHook = '' + echo "make build - compile src/ into out/ with pagefind" + echo "make clean - delete out/ and srv/" + echo "make watch - rebuild on changes" + echo "make serve - serve out/" + echo "make pubdate - replace 'now' with the current date" + echo "make upload - build to srv/ and upload to alogoulogoi" + ''; }; }; };