diff options
-rw-r--r-- | default.nix | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/default.nix b/default.nix index 60e879b..f52c6a6 100644 --- a/default.nix +++ b/default.nix @@ -45,6 +45,10 @@ in rec { shell = pkgs.mkShell rec { name = "website-shell"; buildInputs = projectBuildInputs; + shellHook = '' + echo 'Start a live server with:' + echo ' jekyll serve --future --livereload' + ''; }; publishScript = pkgs.writeShellScriptBin "publish.sh" '' set -euo pipefail |