Fixed Build issue on nix-darwin

This commit is contained in:
DerGrumpf
2026-04-08 09:58:25 +02:00
parent 7cc69e1e34
commit 191893c28c
2 changed files with 3 additions and 9 deletions

View File

@@ -1,5 +1,4 @@
{ pkgs, ... }:
{
{ pkgs, ... }: {
# LSP configuration: Language Server Protocol provides IDE features
# like autocomplete, go-to-definition, diagnostics, and more.
programs.nixvim = {
@@ -81,11 +80,6 @@
};
# Install LSP servers
extraPackages = with pkgs; [
lua-language-server
nil
rust-analyzer
python314Packages.python-lsp-server
];
extraPackages = with pkgs; [ lua-language-server nil rust-analyzer ];
};
}

View File

@@ -92,7 +92,7 @@
];
};
programs.cava = { enable = true; };
programs.cava = lib.mkIf (!isDarwin) { enable = true; };
programs.yazi = {
enable = true;