diff options
author | EuAndreh <eu@euandre.org> | 2020-11-03 06:15:39 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2020-11-03 06:15:39 -0300 |
commit | 742a604b051f3872162f9791e6951b65b5aaa653 (patch) | |
tree | a7a5d8dc9378d81c7b5d50d5c61c8e346b564a0a /default.nix | |
parent | Add dummy time modifier to correctly sort articles from the same day (diff) | |
download | euandre.org-742a604b051f3872162f9791e6951b65b5aaa653.tar.gz euandre.org-742a604b051f3872162f9791e6951b65b5aaa653.tar.xz |
default.nix: Enable --trace by default
Diffstat (limited to '')
-rw-r--r-- | default.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/default.nix b/default.nix index b4799c5..8396ffc 100644 --- a/default.nix +++ b/default.nix @@ -49,8 +49,8 @@ in rec { buildInputs = projectBuildInputs; shellHook = '' echo 'Starting a live server with:' - echo ' jekyll serve --future --livereload' - jekyll serve --future --livereload + echo ' jekyll serve --future --livereload --trace' + jekyll serve --future --livereload --trace ''; }; publishScript = pkgs.writeShellScriptBin "publish.sh" '' |