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