feat: added a parent flake.nix to serve templates.

This commit is contained in:
Reed Krantz
2026-01-12 15:43:45 -06:00
parent 6c51c7cba0
commit 6a08cd5d21

12
flake.nix Normal file
View File

@@ -0,0 +1,12 @@
{
description = "A collection of templates for various programming languages";
outputs = {self}: {
templates = {
rust = {
path = ./rust;
description = "A rust flake with crane and templates for command args and configs";
};
};
};
}