flake-template-hell/flake.nix
2024-08-14 23:44:43 +01:00

24 lines
484 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";
};
"rust" = {
path = ./templates/rust;
description = "rust flake template";
};
};
};
}