Some checks failed
CI / Flake Check (push) Has been cancelled
CI / Evaluate Key Configurations (nix-builder) (push) Has been cancelled
CI / Evaluate Key Configurations (nix-desktop1) (push) Has been cancelled
CI / Evaluate Key Configurations (nix-laptop1) (push) Has been cancelled
CI / Evaluate Artifacts (installer-iso-nix-laptop1) (push) Has been cancelled
CI / Evaluate Artifacts (lxc-nix-builder) (push) Has been cancelled
CI / Format Check (push) Has been cancelled
13 lines
293 B
Nix
13 lines
293 B
Nix
# Generate fleet configurations with custom fleet and hardware types
|
|
# Usage: nixosConfigurations = athenix.lib.mkFleet { fleet = { ... }; hwTypes = { ... }; }
|
|
{
|
|
inputs,
|
|
lib,
|
|
config,
|
|
self ? null,
|
|
users ? {},
|
|
}:
|
|
import ../fleet/default.nix {
|
|
inherit inputs lib config self users;
|
|
}
|