20 lines
380 B
Nix
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";
|
|
};
|
|
};
|
|
};
|
|
}
|