{ description = "My collection of flake templates"; outputs = { self }: { templates = { trivial = { path = ./trivial; description = "What I consider to be the bare minimum flake"; }; }; defaultTemplate = self.templates.trivial; }; }