Files
clan-core/templates/flake.nix
Jörg Thalheim 1907200d58 satisfy treefmt
2024-07-24 22:03:12 +02:00

17 lines
300 B
Nix

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