flake/modules: remove the flake inputs from nixvim module inputs

This commit is contained in:
Gaetan Lepage 2024-01-06 00:10:42 +01:00 committed by Gaétan Lepage
parent e8d6b60a2b
commit f14b59b242

View file

@ -1,8 +1,4 @@
{ {modules, ...}: {
modules,
inputs,
...
}: {
_module.args = let _module.args = let
nixvimModules = with builtins; nixvimModules = with builtins;
map map
@ -22,8 +18,6 @@
pkgs = pkgs.lib.mkForce pkgs; pkgs = pkgs.lib.mkForce pkgs;
inherit (pkgs) lib; inherit (pkgs) lib;
helpers = import ../lib/helpers.nix {inherit (pkgs) lib;}; helpers = import ../lib/helpers.nix {inherit (pkgs) lib;};
# TODO: Not sure why the modules need to access the whole flake inputs...
inherit inputs;
}; };
}; };
}; };