Files
nixos/checks.nix
T
2025-12-10 07:23:50 -06:00

15 lines
278 B
Nix

{
lib,
self',
system,
top,
...
}:
let
nixos = lib.mapAttrs' (n: v: lib.nameValuePair "nixos-${n}" v.config.system.build.toplevel) (
lib.filterAttrs (_: v: v.pkgs.stdenv.hostPlatform.system == system) top.self.nixosConfigurations
);
in
nixos // self'.packages