flake-template-hell/flake.nix
Artur Manuel cd612f03ad
feat(go): add go as a template
add go as a template when i need to
2024-08-11 22:44:19 +01:00

20 lines
380 B
Nix

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