1
0
Fork 0
mirror of https://github.com/NotAShelf/neovim-flake.git synced 2025-01-06 22:29:49 +01:00
neovim-flake/modules/assistant/copilot/copilot.nix
2023-03-31 05:20:35 +03:00

18 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";
};
};
}