adding shell.nix for nixos dev

This commit is contained in:
Jake Goldsborough 2025-07-04 14:44:39 +00:00
parent d911646fc1
commit 679d0b4599

16
shell.nix Normal file
View File

@ -0,0 +1,16 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
name = "zola-blog-dev-shell";
buildInputs = [
pkgs.rustc
pkgs.cargo
pkgs.zola
];
shellHook = ''
echo "Zola blog dev shell ready."
echo "Use 'zola serve' to start the server."
'';
}