Added Guard for Server Configuration; Builds are all successfull

This commit is contained in:
2026-04-10 21:32:38 +02:00
parent 90c1396ea5
commit 46fb7622e9
6 changed files with 115 additions and 111 deletions

View File

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