about summary refs log tree commit diff
path: root/lib/systems/parse.nix
diff options
context:
space:
mode:
authorPhilip Taron <philip.taron@gmail.com>2024-03-12 08:37:53 -0700
committerPhilip Taron <philip.taron@gmail.com>2024-03-19 16:09:37 -0700
commit123a2f0fcc96cc7828ef942a88d3608b55d6d81c (patch)
treeafcd5711e0c0811b0e159c83efb271bc258b9940 /lib/systems/parse.nix
parent5988f8f841d7fde752edf611cd0a9c2ea942b4bd (diff)
lib/systems: use lib.systems.parse and lib.systems.inspect.predicates instead of re-importing
Diffstat (limited to 'lib/systems/parse.nix')
-rw-r--r--lib/systems/parse.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/systems/parse.nix b/lib/systems/parse.nix
index b69ad669e1874..7161b30dc5714 100644
--- a/lib/systems/parse.nix
+++ b/lib/systems/parse.nix
@@ -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;