initial commit

This commit is contained in:
Sean Dugre 2025-11-30 10:16:23 -05:00
commit fe383f9333
7 changed files with 2073 additions and 0 deletions

7
shell.nix Normal file
View file

@ -0,0 +1,7 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShellNoCC {
packages = [
pkgs.hugo
pkgs.just
];
}