mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 00:25:42 +02:00
modules/nixpkgs: useGlobalPackages
default to false
Rather than waiting for a technically impossible migration strategy, let's just bite the bullet and change the default.
This commit is contained in:
parent
fecc892145
commit
3a22953bea
1 changed files with 1 additions and 2 deletions
|
@ -36,8 +36,7 @@ in
|
||||||
options = {
|
options = {
|
||||||
nixpkgs.useGlobalPackages = lib.mkOption {
|
nixpkgs.useGlobalPackages = lib.mkOption {
|
||||||
type = lib.types.bool;
|
type = lib.types.bool;
|
||||||
default = true; # TODO: Added 2025-01-15; switch to false one release after adding a deprecation warning
|
default = false;
|
||||||
defaultText = lib.literalMD ''`true`, but will change to `false` in a future version.'';
|
|
||||||
description = ''
|
description = ''
|
||||||
Whether Nixvim should use the ${config.meta.wrapper.name} configuration's `pkgs`,
|
Whether Nixvim should use the ${config.meta.wrapper.name} configuration's `pkgs`,
|
||||||
instead of constructing its own instance.
|
instead of constructing its own instance.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue