- Add home/coding/languages/ with Python, JavaScript, Rust, Go, TypeScript - Move bun/nodejs from agents.nix to languages/javascript.nix - Move python3 with packages to languages/python.nix - Move npm config to javascript.nix (broader context) - Add language options to m3-ares and m3-kratos host configs - Move pyrefly from agents.nix to lsp/servers.nix - Remove duplicate python3 reference (build conflict fix) - Remove unused base/secrets/cli-tools/ duplicates
24 lines
427 B
Nix
24 lines
427 B
Nix
# 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
|
|
];
|
|
};
|
|
}
|