lib/systems: use lib.systems.parse and lib.systems.inspect.predicates instead of re-importing
This commit is contained in:
parent
5988f8f841
commit
123a2f0fcc
2 changed files with 2 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
|||
{ lib }:
|
||||
with import ./parse.nix { inherit lib; };
|
||||
with lib.systems.parse;
|
||||
with lib.attrsets;
|
||||
with lib.lists;
|
||||
|
||||
|
|
|
@ -19,7 +19,7 @@ with lib.lists;
|
|||
with lib.types;
|
||||
with lib.attrsets;
|
||||
with lib.strings;
|
||||
with (import ./inspect.nix { inherit lib; }).predicates;
|
||||
with lib.systems.inspect.predicates;
|
||||
|
||||
let
|
||||
inherit (lib.options) mergeOneOption;
|
||||
|
|
Loading…
Reference in a new issue