simplify things

This commit is contained in:
Mihai Fufezan 2023-02-10 19:39:31 +02:00
commit c759ae02f5
No known key found for this signature in database
GPG key ID: 5899325F2F120900
3 changed files with 9 additions and 12 deletions

View file

@ -1,4 +1,4 @@
{inputs}: {
inputs: {
configuration,
pkgs,
lib ? pkgs.lib,
@ -6,7 +6,7 @@
extraSpecialArgs ? {},
}: let
inherit (pkgs) neovim-unwrapped wrapNeovim vimPlugins;
inherit (builtins) map filter isString toString getAttr hasAttr attrNames;
inherit (builtins) map filter isString toString getAttr;
inherit (pkgs.vimUtils) buildVimPluginFrom2Nix;
extendedLib = import ../lib/stdlib-extended.nix lib;