zsh.nix/hydra.nix
jiriks74 6ff8812aa2
Some checks failed
Perform checks / formatting (push) Failing after 19s
Perform checks / nix_flake_check (push) Failing after 15s
feat(ci/cd): Set up Hydra
2025-01-10 18:19:34 +01:00

22 lines
648 B
Nix

{
inputs,
outputs,
}: let
inherit (inputs.nixpkgs) lib;
notBroken = pkg: !(pkg.meta.broken or false);
isDistributable = pkg: (pkg.meta.license or {redistributable = true;}).redistributable;
hasPlatform = sys: pkg: lib.elem sys (pkg.meta.platforms or [sys]);
filterValidPkgs = sys: pkgs:
lib.filterAttrs (_: pkg:
lib.isDerivation pkg
&& hasPlatform sys pkg
&& notBroken pkg
&& isDistributable pkg)
pkgs;
getConfigTopLevel = _: cfg: cfg.config.system.build.toplevel;
in {
pkgs = lib.mapAttrs filterValidPkgs outputs.packages;
hosts = lib.mapAttrs getConfigTopLevel outputs.nixosConfigurations;
}