neovim: disable ruby provider by default

This commit is contained in:
teto
2026-03-12 15:01:04 +01:00
committed by Matthieu Coudron
parent 52d053556a
commit 7cd3093fc6
2 changed files with 10 additions and 1 deletions
@@ -0,0 +1,9 @@
{ config, ... }:
{
time = "2026-03-12T13:04:00+00:00";
condition = config.programs.neovim.enable;
message = ''
The ruby provider is now disabled by default since the overwhelming majority of users do not use it.
Set `programs.neovim.withRuby = true;` to restore the previous behavior.
'';
}
+1 -1
View File
@@ -118,7 +118,7 @@ in
withRuby = mkOption {
type = types.nullOr types.bool;
default = true;
default = false;
description = ''
Enable ruby provider.
'';