feat(go): add go as a template

add go as a template when i need to
This commit is contained in:
Artur Manuel 2024-08-11 22:44:19 +01:00
commit cd612f03ad
Failed to generate hash of commit
8 changed files with 224 additions and 1 deletions

View file

@ -1,12 +1,20 @@
{
description = "Flake Template Hell";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/release-24.05";
};
outputs = _: {
outputs = _: {
templates = {
"python" = {
path = ./templates/python;
description = "python flake template";
};
"go" = {
path = ./templates/go;
description = "go flake template";
};
};
};
}