From 6263b349c3acb6f7795be3dda6f55f601d11b060 Mon Sep 17 00:00:00 2001 From: Archit Gupta Date: Fri, 12 Jan 2024 01:26:49 -0800 Subject: [PATCH] Fix text wrapping for import in core.nix --- builtinModules/core.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/builtinModules/core.nix b/builtinModules/core.nix index b005695..63e22e2 100644 --- a/builtinModules/core.nix +++ b/builtinModules/core.nix @@ -5,8 +5,8 @@ { config, inputs, lib, flakelight, ... }: let inherit (builtins) all head isAttrs length; - inherit (lib) foldAttrs genAttrs getFiles getValues mapAttrs mergeAttrs mkOption - mkOptionType showFiles showOption; + inherit (lib) foldAttrs genAttrs getFiles getValues mapAttrs mergeAttrs + mkOption mkOptionType showFiles showOption; inherit (lib.types) functionTo lazyAttrsOf listOf nonEmptyStr raw uniq; inherit (flakelight.types) optListOf overlay;