wrappers: use lib.nixvim option

Update internal usage from the deprecated `nixvim.helpers` option to the
new `lib.nixvim` option name.
This commit is contained in:
Matt Sturgeon 2024-07-25 13:56:03 +01:00
parent 4d874f6c11
commit faff876ee6
No known key found for this signature in database
GPG key ID: 4F91844CED1A8299
3 changed files with 3 additions and 3 deletions

View file

@ -26,7 +26,7 @@ in
specialArgs = {
darwinConfig = config;
defaultPkgs = pkgs;
inherit (config.nixvim) helpers;
helpers = config.lib.nixvim;
};
modules = [
./modules/darwin.nix

View file

@ -25,7 +25,7 @@ in
specialArgs = {
hmConfig = config;
defaultPkgs = pkgs;
inherit (config.nixvim) helpers;
helpers = config.lib.nixvim;
};
modules = [
./modules/hm.nix

View file

@ -26,7 +26,7 @@ in
specialArgs = {
nixosConfig = config;
defaultPkgs = pkgs;
inherit (config.nixvim) helpers;
helpers = config.lib.nixvim;
};
modules = [
./modules/nixos.nix