{ description = "Flake Template Hell"; outputs = { self }: { templates = builtins.mapAttrs (name: _: { path = ./templates/${name}; description = "Template for ${name} projects."; }) (builtins.readDir ./templates); }; }