mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-03-18 15:34:13 +01:00
12 lines
322 B
Nix
12 lines
322 B
Nix
{
|
|
lib,
|
|
outputs,
|
|
}:
|
|
lib.genAttrs
|
|
(builtins.attrNames outputs.nixosConfigurations)
|
|
(
|
|
# test only if kernelPackages is set, to avoid build the kernel.
|
|
# name: outputs.nixosConfigurations.${name}.config.boot.kernelPackages.kernel.system
|
|
name: outputs.nixosConfigurations.${name}.config.boot.kernelPackages != null
|
|
)
|