cli: default template url should come from the package itself rather than our gitea

This allow easier testing and also forks.
This commit is contained in:
Jörg Thalheim
2024-07-21 22:06:26 +02:00
parent b5f6200148
commit f04ed457db
6 changed files with 68 additions and 40 deletions

16
templates/flake.nix Normal file
View File

@@ -0,0 +1,16 @@
{
outputs =
{ ... }:
{
templates = {
default = {
description = "Initialize a new clan flake";
path = ./new-clan;
};
minimal = {
description = "for clans managed via (G)UI";
path = ./minimal;
};
};
};
}