flake-template-hell/flake.nix

13 lines
201 B
Nix
Raw Normal View History

{
description = "Flake Template Hell";
outputs = _: {
templates = {
"python" = {
path = ./templates/python;
description = "python flake template";
};
};
};
}