From 69d72bb82d7ba1904df47cf092ce1d4c88448001 Mon Sep 17 00:00:00 2001 From: Vladislav Grechannik Date: Mon, 13 Oct 2025 11:14:34 +0200 Subject: [PATCH] plugins/copilot-vim: update nodejs Copilot-vim started to complain about nodejs being too old and it recommends to update to 22 --- plugins/by-name/copilot-vim/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/by-name/copilot-vim/default.nix b/plugins/by-name/copilot-vim/default.nix index 72486a21..fd958358 100644 --- a/plugins/by-name/copilot-vim/default.nix +++ b/plugins/by-name/copilot-vim/default.nix @@ -24,8 +24,8 @@ lib.nixvim.plugins.mkVimPlugin { settingsOptions = { node_command = mkOption { type = with types; nullOr str; - default = lib.getExe pkgs.nodejs_20; - defaultText = lib.literalExpression "lib.getExe pkgs.nodejs_20"; + default = lib.getExe pkgs.nodejs_22; + defaultText = lib.literalExpression "lib.getExe pkgs.nodejs_22"; description = "Tell Copilot what `node` binary to use."; };