tests/lua-ls: disable on x86_64-darwin

https://github.com/NixOS/nixpkgs/issues/347742
This commit is contained in:
Austin Horstman 2024-10-10 09:17:33 -05:00
parent 75ae10571d
commit 684df4d93d
No known key found for this signature in database

View file

@ -1,10 +1,12 @@
{ pkgs, ... }:
{
defaults = {
plugins.lsp = {
enable = true;
servers.lua_ls = {
enable = true;
# TODO: re-enable when x86_64-darwin build is stable
enable = pkgs.stdenv.isLinux || pkgs.stdenv.hostPlatform.isAarch64;
settings = {
addonManager = {