mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 00:25:42 +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 = {
|
specialArgs = {
|
||||||
darwinConfig = config;
|
darwinConfig = config;
|
||||||
defaultPkgs = pkgs;
|
defaultPkgs = pkgs;
|
||||||
inherit (config.nixvim) helpers;
|
helpers = config.lib.nixvim;
|
||||||
};
|
};
|
||||||
modules = [
|
modules = [
|
||||||
./modules/darwin.nix
|
./modules/darwin.nix
|
||||||
|
|
|
@ -25,7 +25,7 @@ in
|
||||||
specialArgs = {
|
specialArgs = {
|
||||||
hmConfig = config;
|
hmConfig = config;
|
||||||
defaultPkgs = pkgs;
|
defaultPkgs = pkgs;
|
||||||
inherit (config.nixvim) helpers;
|
helpers = config.lib.nixvim;
|
||||||
};
|
};
|
||||||
modules = [
|
modules = [
|
||||||
./modules/hm.nix
|
./modules/hm.nix
|
||||||
|
|
|
@ -26,7 +26,7 @@ in
|
||||||
specialArgs = {
|
specialArgs = {
|
||||||
nixosConfig = config;
|
nixosConfig = config;
|
||||||
defaultPkgs = pkgs;
|
defaultPkgs = pkgs;
|
||||||
inherit (config.nixvim) helpers;
|
helpers = config.lib.nixvim;
|
||||||
};
|
};
|
||||||
modules = [
|
modules = [
|
||||||
./modules/nixos.nix
|
./modules/nixos.nix
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue