Configuration for my NixOS based systems and Home Manager
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix duplicate rust_analyzer, add unstable opencode

+4 -2
+1 -1
default-home.nix
··· 117 117 inputs.claude-code.packages.${system}.claude-code-bun 118 118 inputs.claude-code.packages.${system}.claude-code 119 119 codex 120 - opencode 120 + unstable.opencode 121 121 122 122 # Python dev tools 123 123 pyright
+3 -1
nvim/lua/lsp.lua
··· 16 16 "ruff", "clojure_lsp", "guile_ls", 17 17 -- Of course the Java-based ones are verbose af 18 18 "kotlin_language_server", "java_language_server", "jsonls", "pest_ls", 19 - "ocamllsp", "reason_ls", "racket_langserver", "rust_analyzer", 19 + "ocamllsp", "reason_ls", "racket_langserver", 20 20 "scheme_langserver", "sqls", "thriftls", "tinymist", "vhdl_ls", "yamlls", 21 21 "zls", "ts_ls", "eslint", "metals", "futhark_lsp", "roc_ls", "sourcekit" 22 22 -- disabled because it's broken 23 23 -- "scheme_langserver", 24 + -- This is enabled by a plugin and causes multiple instances to run if enabled here 25 + --"rust_analyzer" 24 26 } 25 27 vim.lsp.enable(servers) 26 28