tests/lsp: disable "all-servers" test for darwin because of sandbox limitations

This commit is contained in:
Gaetan Lepage 2024-01-04 23:29:41 +01:00 committed by Gaétan Lepage
parent 5a6ea0aa09
commit e2bd0e5db0

View file

@ -70,7 +70,12 @@
};
};
all-servers = {
all-servers =
pkgs.lib.optionalAttrs
# This fails on darwin
# See https://github.com/NixOS/nix/issues/4119
(!pkgs.stdenv.isDarwin)
{
plugins.lsp = {
enable = true;