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

16
flake.nix Normal file
View file

@ -0,0 +1,16 @@
{
inputs.flake-utils.url = "github:numtide/flake-utils";
outputs = {
nixpkgs,
flake-utils,
...
}:
flake-utils.lib.eachDefaultSystem
(system:
let pkgs = nixpkgs.legacyPackages.${system}; in
{
devShells.default = import ./shell.nix { inherit pkgs; };
}
);
}