mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-24 01:38:40 +02:00
tests: Disable coq-nvim defaults on x86_64 darwin
This commit is contained in:
parent
50d865275d
commit
daa94bd6c2
1 changed files with 13 additions and 8 deletions
|
@ -4,8 +4,12 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
nixvim-defaults = {
|
nixvim-defaults = {
|
||||||
|
module =
|
||||||
|
{ pkgs, ... }:
|
||||||
|
{
|
||||||
plugins.coq-nvim = {
|
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 = {
|
settings = {
|
||||||
xdg = true;
|
xdg = true;
|
||||||
|
@ -15,6 +19,7 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
};
|
||||||
|
|
||||||
artifacts = {
|
artifacts = {
|
||||||
plugins.coq-nvim = {
|
plugins.coq-nvim = {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue