From 2dbe45ff66be266f4e98b4deba6237a56ca4f5ed Mon Sep 17 00:00:00 2001 From: Ittihadyya Date: Sun, 12 Jan 2025 10:33:35 +0200 Subject: [PATCH] added shell.nix so that zola is always in path --- shell.nix | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 shell.nix diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..287ad9f --- /dev/null +++ b/shell.nix @@ -0,0 +1,7 @@ +with import {}; + +pkgs.mkShellNoCC { + packages = with pkgs; [ + zola + ]; +}