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,8 +4,12 @@
};
nixvim-defaults = {
module =
{ pkgs, ... }:
{
plugins.coq-nvim = {
enable = true;
# It seems that the plugin has issues being executed in the same derivation
enable = !(pkgs.stdenv.isDarwin && pkgs.stdenv.isx86_64);
settings = {
xdg = true;
@ -15,6 +19,7 @@
};
};
};
};
artifacts = {
plugins.coq-nvim = {