mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-20 16:15:43 +02:00
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:
parent
4d874f6c11
commit
faff876ee6
3 changed files with 3 additions and 3 deletions
|
@ -26,7 +26,7 @@ in
|
|||
specialArgs = {
|
||||
darwinConfig = config;
|
||||
defaultPkgs = pkgs;
|
||||
inherit (config.nixvim) helpers;
|
||||
helpers = config.lib.nixvim;
|
||||
};
|
||||
modules = [
|
||||
./modules/darwin.nix
|
||||
|
|
|
@ -25,7 +25,7 @@ in
|
|||
specialArgs = {
|
||||
hmConfig = config;
|
||||
defaultPkgs = pkgs;
|
||||
inherit (config.nixvim) helpers;
|
||||
helpers = config.lib.nixvim;
|
||||
};
|
||||
modules = [
|
||||
./modules/hm.nix
|
||||
|
|
|
@ -26,7 +26,7 @@ in
|
|||
specialArgs = {
|
||||
nixosConfig = config;
|
||||
defaultPkgs = pkgs;
|
||||
inherit (config.nixvim) helpers;
|
||||
helpers = config.lib.nixvim;
|
||||
};
|
||||
modules = [
|
||||
./modules/nixos.nix
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue