2024-08-11 08:22:48 +01:00
|
|
|
{
|
|
|
|
description = "Flake Template Hell";
|
2024-08-11 22:44:19 +01:00
|
|
|
|
|
|
|
outputs = _: {
|
2024-08-11 08:22:48 +01:00
|
|
|
templates = {
|
|
|
|
"python" = {
|
|
|
|
path = ./templates/python;
|
|
|
|
description = "python flake template";
|
|
|
|
};
|
2024-08-11 22:44:19 +01:00
|
|
|
"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";
|
|
|
|
};
|
2024-08-11 08:22:48 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|