summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--lib/modules.nix66
1 files changed, 32 insertions, 34 deletions
diff --git a/lib/modules.nix b/lib/modules.nix
index 37e2e23ec12..6c4a8f7b324 100644
--- a/lib/modules.nix
+++ b/lib/modules.nix
@@ -1,53 +1,51 @@
 { lib }:
 
 let
-  inherit (lib.attrsets)
-    mapAttrsRecursiveCond
-    ;
-  inherit (lib.lists)
-    any all concatLists concatMap
-    count filter findFirst foldl foldl'
-    head imap1 length optional
-    reverseList sort
-    ;
-  inherit (lib.options)
-    isOption
-    mkOption
-    showDefs
-    showFiles
-    showOption
-    unknownModule
-    ;
-  inherit (lib.attrsets)
+  inherit (lib)
+    all
+    any
     attrByPath
     attrNames
     catAttrs
+    concatLists
+    concatMap
+    count
+    elem
+    filter
+    findFirst
+    flip
+    foldl
+    foldl'
     getAttrFromPath
+    head
+    id
+    imap1
+    isAttrs
+    isBool
+    isFunction
+    isString
+    length
     mapAttrs
     mapAttrsToList
+    mapAttrsRecursiveCond
+    min
+    optional
     optionalAttrs
+    optionalString
     recursiveUpdate
+    reverseList sort
     setAttrByPath
     toList
-    ;
-  inherit (lib.types)
     types
-    ;
-  inherit (lib.trivial)
-    flip
-    id
-    isBool
-    isFunction
-    isString
-    min
     warn
     ;
-  inherit (lib.strings)
-    optionalString
-    ;
-  inherit (lib)
-    elem
-    isAttrs
+  inherit (lib.options)
+    isOption
+    mkOption
+    showDefs
+    showFiles
+    showOption
+    unknownModule
     ;
 in