44 lines
989 B
Nix
44 lines
989 B
Nix
{
|
|
outputs =
|
|
{ ... }:
|
|
{
|
|
clan.templates = {
|
|
disko = {
|
|
single-disk = {
|
|
description = "A simple ext4 disk with a single partition";
|
|
path = ./disk/single-disk;
|
|
};
|
|
};
|
|
|
|
machine = {
|
|
flash-installer = {
|
|
description = "Initialize a new flash-installer machine";
|
|
path = ./machine/flash-installer;
|
|
};
|
|
|
|
new-machine = {
|
|
description = "Initialize a new machine";
|
|
path = ./machine/new-machine;
|
|
};
|
|
};
|
|
|
|
clan = {
|
|
default = {
|
|
description = "Initialize a new clan";
|
|
path = ./clan/default;
|
|
};
|
|
|
|
flake-parts = {
|
|
description = "Initialize a new clan (flake-parts)";
|
|
path = ./clan/flake-parts;
|
|
};
|
|
|
|
minimal = {
|
|
description = "Minimal Clan";
|
|
path = ./clan/minimal;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|