My Nix Configuration
1{ 2 self, 3 ... 4}: 5{ 6 flake = { 7 templates = { 8 uv = { 9 path = ./uv; 10 description = "uv project template"; 11 }; 12 }; 13 defaultTemplate = self.templates.uv; 14 }; 15}