flake-template-hell/flake.nix
amadaluzia fd45c8b11a feat: remove python
ill figure out a fix for this later
2024-09-07 16:23:03 +00:00

20 lines
412 B
Nix

{
description = "Flake Template Hell";
outputs = _: {
templates = {
"go" = {
path = ./templates/go;
description = "go flake template";
};
"rust" = {
path = ./templates/rust;
description = "rust flake template";
};
"haskell" = {
path = ./templates/haskell;
description = "haskell flake template";
};
};
};
}