added shell.nix so that zola is always in path

This commit is contained in:
Ittihadyya 2025-01-12 10:33:35 +02:00
parent 04ad0f731f
commit 2dbe45ff66

7
shell.nix Normal file
View file

@ -0,0 +1,7 @@
with import <nixpkgs> {};
pkgs.mkShellNoCC {
packages = with pkgs; [
zola
];
}