{ description = "Irenes' nix flake templates"; outputs = { self }: { templates = { base = { path = ./base; description = '' Minimal flake, defines a shell, direnv, and gitignore. ''; }; rust = { path = ./rust; description = "A Rust project built using Cargo and crane."; }; }; defaultTemplate = self.templates.base; }; }