12 lines
284 B
Nix
12 lines
284 B
Nix
# Generate fleet configurations with custom fleet and hardware types
|
|
# Usage: nixosConfigurations = athenix.lib.mkFleet { fleet = { ... }; hwTypes = { ... }; }
|
|
{
|
|
inputs,
|
|
fleet ? null,
|
|
hwTypes ? null,
|
|
}:
|
|
import ../fleet/default.nix {
|
|
inherit inputs;
|
|
inherit fleet hwTypes;
|
|
}
|