tests: Disable coq-nvim defaults on x86_64 darwin

This commit is contained in:
traxys 2024-07-17 16:18:26 +02:00
parent 50d865275d
commit daa94bd6c2

View file

@ -4,16 +4,21 @@
};
nixvim-defaults = {
plugins.coq-nvim = {
enable = true;
module =
{ pkgs, ... }:
{
plugins.coq-nvim = {
# It seems that the plugin has issues being executed in the same derivation
enable = !(pkgs.stdenv.isDarwin && pkgs.stdenv.isx86_64);
settings = {
xdg = true;
auto_start = true;
keymap.recommended = true;
completion.always = true;
settings = {
xdg = true;
auto_start = true;
keymap.recommended = true;
completion.always = true;
};
};
};
};
};
artifacts = {