{ description = "nix flakes"; outputs = { self }: { templates = { c = { path = ./c; description = "c template"; }; go = { path = ./go; description = "go template"; }; elixir = { path = ./elixir; description = "elixir template"; }; zig = { path = ./zig; description = "zig template"; }; odin = { path = ./odin; description = "odin template"; }; psql = { path = ./psql; description = "psql template"; }; crystal = { path = ./crystal; description = "crystal template"; }; }; defaultTemplate = self.templates.go; }; }