lib/systems: use lib.systems.parse and lib.systems.inspect.predicates instead of re-importing

This commit is contained in:
Philip Taron 2024-03-12 08:37:53 -07:00
parent 5988f8f841
commit 123a2f0fcc
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
{ lib }: { lib }:
with import ./parse.nix { inherit lib; }; with lib.systems.parse;
with lib.attrsets; with lib.attrsets;
with lib.lists; with lib.lists;

View File

@ -19,7 +19,7 @@ with lib.lists;
with lib.types; with lib.types;
with lib.attrsets; with lib.attrsets;
with lib.strings; with lib.strings;
with (import ./inspect.nix { inherit lib; }).predicates; with lib.systems.inspect.predicates;
let let
inherit (lib.options) mergeOneOption; inherit (lib.options) mergeOneOption;