Starting to add template data types

This commit is contained in:
2026-01-19 21:38:29 -06:00
parent 3250398b96
commit cc75241e0f
4 changed files with 57 additions and 25 deletions

13
shell.nix Normal file
View File

@@ -0,0 +1,13 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
nativeBuildInputs = with pkgs; [
odin
ols
];
shellHook = ''
echo "Odin Shell"
'';
}