Files
athenix/lib/mkFleet.nix
UGA Innovation Factory d89caa8a6b chore: run nix fmt
2026-01-07 18:15:37 -05:00

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;
}