flake-template-hell/flake.nix

21 lines
412 B
Nix
Raw Normal View History

{
description = "Flake Template Hell";
outputs = _: {
templates = {
"go" = {
path = ./templates/go;
description = "go flake template";
};
2024-08-14 23:44:43 +01:00
"rust" = {
path = ./templates/rust;
description = "rust flake template";
};
2024-09-07 17:20:05 +01:00
"haskell" = {
path = ./templates/haskell;
description = "haskell flake template";
};
};
};
}