2024-08-11 08:22:48 +01:00
|
|
|
{
|
|
|
|
description = "Flake Template Hell";
|
2024-09-14 00:40:24 +01:00
|
|
|
outputs = _: {
|
2024-09-14 00:39:36 +01:00
|
|
|
templates = builtins.mapAttrs (name: _: {
|
|
|
|
path = ./templates/${name};
|
|
|
|
description = "Template for ${name} projects.";
|
|
|
|
}) (builtins.readDir ./templates);
|
2024-08-11 08:22:48 +01:00
|
|
|
};
|
|
|
|
}
|