25 lines
820 B
Nix
25 lines
820 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;
|
||
|
default = lib.mapAttrs getConfigTopLevel outputs.homeManagerModules.default;
|
||
|
withPackages = lib.mapAttrs getConfigTopLevel outputs.homeManagerModules.withPackages;
|
||
|
}
|