gitignore was ignoring files in blog/

This commit is contained in:
wi11-holdsworth 2025-01-28 19:09:19 +11:00
commit 08ce449cb4
43 changed files with 710 additions and 0 deletions

8
shell.nix Normal file
View file

@ -0,0 +1,8 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
nativeBuildInputs = with pkgs.buildPackages; [
gnumake
envsubst
python312Packages.mat2
];
}