mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-20 16:15:43 +02:00
tests/lua-ls: disable on x86_64-darwin
https://github.com/NixOS/nixpkgs/issues/347742
This commit is contained in:
parent
75ae10571d
commit
684df4d93d
1 changed files with 3 additions and 1 deletions
|
@ -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 = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue