mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-02 03:21:14 +00:00
19 lines
322 B
Nix
19 lines
322 B
Nix
{
|
|
pkgs,
|
|
config,
|
|
lib,
|
|
...
|
|
}:
|
|
with lib;
|
|
with builtins; {
|
|
options.vim.assistant.copilot = {
|
|
enable = mkEnableOption "Enable GitHub Copilot";
|
|
|
|
copilot_node_command = mkOption {
|
|
type = types.str;
|
|
default = "${lib.getExe pkgs.nodejs-slim-16_x}";
|
|
description = "Path to nodejs";
|
|
};
|
|
};
|
|
}
|