Templates: move all clan templates into subfolder 'clan'

This commit is contained in:
Johannes Kirschbauer
2024-11-28 11:17:43 +01:00
parent 43f9b17cd9
commit f2f993203b
29 changed files with 5 additions and 5 deletions

View File

@@ -5,23 +5,23 @@
templates = { templates = {
default = { default = {
description = "Initialize a new clan flake"; description = "Initialize a new clan flake";
path = ./new-clan; path = ./clan/new-clan;
}; };
minimal = { minimal = {
description = "for clans managed via (G)UI"; description = "for clans managed via (G)UI";
path = ./minimal; path = ./clan/minimal;
}; };
flake-parts = { flake-parts = {
description = "Flake-parts"; description = "Flake-parts";
path = ./flake-parts; path = ./clan/flake-parts;
}; };
minimal-flake-parts = { minimal-flake-parts = {
description = "Minimal flake-parts clan template"; description = "Minimal flake-parts clan template";
path = ./minimal-flake-parts; path = ./clan/minimal-flake-parts;
}; };
machineTemplates = { machineTemplates = {
description = "Machine templates"; description = "Machine templates";
path = ./machineTemplates; path = ./clan/machineTemplates;
}; };
}; };
}; };