From 77523474e4237fd01dcaa8914f5aef9fef367dbc Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Sat, 6 Jan 2024 00:10:42 +0100 Subject: [PATCH] flake/modules: remove the flake inputs from nixvim module inputs --- flake-modules/modules.nix | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/flake-modules/modules.nix b/flake-modules/modules.nix index 4bc394215d..90970e58c2 100644 --- a/flake-modules/modules.nix +++ b/flake-modules/modules.nix @@ -1,8 +1,4 @@ -{ - modules, - inputs, - ... -}: { +{modules, ...}: { _module.args = let nixvimModules = with builtins; map @@ -22,8 +18,6 @@ pkgs = pkgs.lib.mkForce pkgs; 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; }; }; };