flake-template-hell/flake.nix

21 lines
380 B
Nix
Raw Normal View History

{
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";
};
};
};
}