test naive templates

This commit is contained in:
jsz4n
2023-10-24 17:36:04 +02:00
parent 594c311117
commit 9aada69d8f
7 changed files with 131 additions and 0 deletions

26
flake.nix Normal file
View File

@@ -0,0 +1,26 @@
{
description = "A collection of flake templates";
outputs = { self }: {
templates = {
simplePython = {
path = ./python;
description = "Python template";
};
rust = {
path = ./rust;
description = "Simple rust template";
};
vlang = {
path = ./vlang;
description = "Simple vlang template";
};
};
};
}