From 5d5ece447caccf02a974eda87d260120437d3c4b Mon Sep 17 00:00:00 2001
From: Daniel Firth <dan.firth@homotopic.tech>
Date: Thu, 15 Dec 2022 18:48:41 +0000
Subject: [PATCH] templates: add default template

---
 flake.nix | 14 ++++++++++----
 1 file changed, 10 insertions(+), 4 deletions(-)

diff --git a/flake.nix b/flake.nix
index 0b6a2e5d..36bf58b2 100644
--- a/flake.nix
+++ b/flake.nix
@@ -95,9 +95,15 @@
       inherit packages;
 
     }) // {
-      templates.minimal = {
-        description = "horizon-platform minimal template";
-        path = ./templates/minimal;
-    };
+      templates = rec {
+
+        default = minimal;
+
+        minimal = {
+          description = "horizon-platform minimal template";
+          path = ./templates/minimal;
+        };
+
+     };
   };
 }
-- 
GitLab