Files
m3ta-home/profiles/sets/coding/lsp/servers.nix
T

24 lines
427 B
Nix
Raw Normal View History

2026-05-02 09:08:40 +02:00
# LSP server configuration — language servers for the development environment.
{
config,
lib,
pkgs,
...
}:
with lib; let
cfg = config.coding.lsp;
in {
options.coding.lsp.enable = mkEnableOption "enable LSP servers";
config = mkIf cfg.enable {
home.packages = with pkgs; [
# Nix
nixd
# General
typescript-language-server
tailwindcss-language-server
pyrefly
];
};
}