mirror of
https://github.com/softinio/nix-config.git
synced 2025-10-19 11:26:40 -07:00
17 lines
No EOL
325 B
Nix
17 lines
No EOL
325 B
Nix
{ pkgs, lib, ... }:
|
|
|
|
{
|
|
programs.nixvim = {
|
|
plugins = {
|
|
# GitHub Copilot
|
|
copilot-vim.enable = true;
|
|
|
|
# Avante AI assistant (imported from separate file)
|
|
# avante config is in avante.nix
|
|
};
|
|
|
|
globals = {
|
|
copilot_node_command = lib.mkForce "${pkgs.nodejs-slim}/bin/node";
|
|
};
|
|
};
|
|
} |