misc: refactor imports, prefer adding helpers to args rather than importing it

This commit is contained in:
Gaetan Lepage 2023-11-06 15:04:08 +01:00 committed by Gaétan Lepage
parent 541b694873
commit b6724702b4
160 changed files with 697 additions and 736 deletions

View file

@ -1,8 +1,9 @@
{
lib,
config,
pkgs,
...
} @ attrs: let
}: let
helpers = import ../../helpers.nix {inherit lib;};
in
with helpers;
@ -13,7 +14,7 @@ in
useDefaultPackage ? true,
...
}:
mkPlugin attrs {
mkPlugin {inherit lib config pkgs;} {
inherit name;
extraPlugins = extraPlugins ++ (lists.optional useDefaultPackage pkgs.vimPlugins.${name});
description = "Enable ${name}";