{ description = "My personal templates"; outputs = { self }: { templates = { base-flake = { path = ./base-flake; description = "An empty flake for each default system"; }; rust-flake = { path = ./rust-flake; description = "Flake to develop, build and run a rust application"; }; }; defaultTemplate = self.templates.base-flake; }; }