9 lines
198 B
Nix
9 lines
198 B
Nix
{ config, ... }:
|
|
let
|
|
inherit (cfg.lib) extractConfigurations;
|
|
cfg = config.flake;
|
|
hosts = cfg.manifest.hosts or { };
|
|
in
|
|
{
|
|
flake.nixosConfigurations = extractConfigurations "nixos/" hosts;
|
|
}
|