flake-template-hell/flake.nix
2024-09-07 17:20:05 +01:00

24 lines
522 B
Nix

{
description = "Flake Template Hell";
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";
};
"haskell" = {
path = ./templates/haskell;
description = "haskell flake template";
};
};
};
}