diff --git a/tests/test-sources/plugins/completion/coq.nix b/tests/test-sources/plugins/completion/coq.nix index 46125416..5bb37f05 100644 --- a/tests/test-sources/plugins/completion/coq.nix +++ b/tests/test-sources/plugins/completion/coq.nix @@ -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 = {