From 98780ec92dc18930a1df3eee2874e6bc19c83234 Mon Sep 17 00:00:00 2001 From: Ladas552 Date: Tue, 10 Feb 2026 10:13:56 +0500 Subject: [PATCH] wrapper/options: change `withRuby` to `false` by default --- docs/manual/release-notes/rl-0.9.md | 4 ++++ modules/wrapper/environment/options.nix | 13 +++---------- 2 files changed, 7 insertions(+), 10 deletions(-) diff --git a/docs/manual/release-notes/rl-0.9.md b/docs/manual/release-notes/rl-0.9.md index e5687d1a..967609dc 100644 --- a/docs/manual/release-notes/rl-0.9.md +++ b/docs/manual/release-notes/rl-0.9.md @@ -196,4 +196,8 @@ https://github.com/gorbit99/codewindow.nvim - Added [`grug-far.nvim`](https://github.com/MagicDuck/grug-far.nvim) the find and replace tool for neovim. +[Ladas552](https://github.com/Ladas552) + +- Changed `withRuby` to not be enabled by default + diff --git a/modules/wrapper/environment/options.nix b/modules/wrapper/environment/options.nix index 5b2f1f63..fdc07053 100644 --- a/modules/wrapper/environment/options.nix +++ b/modules/wrapper/environment/options.nix @@ -106,16 +106,9 @@ in { ''; }; - # This defaults to `true` in the wrapper - # and since we pass this value to the wrapper - # with an inherit, it should be `true` here as well - withRuby = - mkEnableOption '' - Ruby support in the Neovim wrapper. - '' - // { - default = true; - }; + withRuby = mkEnableOption '' + Ruby support in the Neovim wrapper + ''; withNodeJs = mkEnableOption '' NodeJS support in the Neovim wrapper