treewide: format

This commit is contained in:
Gabriel Fontes
2023-04-01 13:22:37 -03:00
parent be294322e9
commit 759d32e807
8 changed files with 45 additions and 34 deletions
+1 -1
View File
@@ -3,7 +3,7 @@ let
inherit (inputs.nixpkgs.lib) filterAttrs mapAttrs elem;
notBroken = pkg: !(pkg.meta.broken or false);
hasPlatform = sys: pkg: elem sys (pkg.meta.platforms or []);
hasPlatform = sys: pkg: elem sys (pkg.meta.platforms or [ ]);
filterValidPkgs = sys: pkgs: filterAttrs (_: pkg: hasPlatform sys pkg && notBroken pkg) pkgs;
getCfg = _: cfg: cfg.config.system.build.toplevel;
in