Files
flake-templates/flake.nix

32 lines
506 B
Nix
Raw Normal View History

2023-10-24 17:36:04 +02:00
{
description = "A collection of flake templates";
outputs = { self }: {
templates = {
simplePython = {
path = ./python;
description = "Python template";
};
rust = {
path = ./rust;
description = "Simple rust template";
};
vlang = {
path = ./vlang;
description = "Simple vlang template";
};
2024-03-04 17:00:27 +01:00
haskell = {
path = ./haskell;
description = "Simple haskell template";
};
2023-10-24 17:36:04 +02:00
};
};
}