1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-09 03:56:05 +01:00

plugins/codeium-vim: set defaultText for bin

This commit is contained in:
Matt Sturgeon 2025-01-24 23:19:17 +00:00
parent 0d23003878
commit 758bdd8dd1
No known key found for this signature in database
GPG key ID: 4F91844CED1A8299

View file

@ -57,7 +57,8 @@ lib.nixvim.plugins.mkVimPlugin {
settingsOptions = { settingsOptions = {
bin = mkOption { bin = mkOption {
type = with types; nullOr str; type = with types; nullOr str;
default = "${pkgs.codeium}/bin/codeium_language_server"; default = lib.getExe' pkgs.codeium "codeium_language_server";
defaultText = lib.literalExpression ''lib.getExe' pkgs.codeium "codeium_language_server"'';
description = "The path to the codeium language server executable."; description = "The path to the codeium language server executable.";
}; };