Files
clan-core/templates/flake.nix

25 lines
528 B
Nix

{
outputs =
{ ... }:
{
templates = {
default = {
description = "Initialize a new clan flake";
path = ./new-clan;
};
minimal = {
description = "for clans managed via (G)UI";
path = ./minimal;
};
flake-parts = {
description = "Flake-parts";
path = ./flake-parts;
};
machineTemplates = {
description = "Machine templates";
path = ./machineTemplates;
};
};
};
}