fix(vscode): disable mcp

This commit is contained in:
Nickolaj Jepsen 2025-09-15 12:21:26 +02:00
parent b5704f4e10
commit a33c6008d1

View file

@ -84,7 +84,6 @@ in {
"remote.SSH.remotePlatform" = lib.mapAttrs (_name: _value: "linux") config.fireproof.home-manager.programs.ssh.matchBlocks; "remote.SSH.remotePlatform" = lib.mapAttrs (_name: _value: "linux") config.fireproof.home-manager.programs.ssh.matchBlocks;
# AI # AI
"github.copilot.editor.enableAutoCompletions" = true;
"github.copilot.enable" = { "github.copilot.enable" = {
"*" = true; "*" = true;
"plaintext" = true; "plaintext" = true;
@ -95,6 +94,7 @@ in {
"github.copilot.chat.agent.thinkingTool" = true; "github.copilot.chat.agent.thinkingTool" = true;
"github.copilot.chat.codesearch.enabled" = true; "github.copilot.chat.codesearch.enabled" = true;
"github.copilot.nextEditSuggestions.enabled" = true; "github.copilot.nextEditSuggestions.enabled" = true;
"githubPullRequests.codingAgent.uiIntegration" = true;
# Theme # Theme
"workbench.colorTheme" = "Darcula Theme from IntelliJ"; "workbench.colorTheme" = "Darcula Theme from IntelliJ";
@ -113,14 +113,15 @@ in {
} }
(mkFormatter "esbenp.prettier-vscode" ["json" "jsonc" "markdown" "css" "scss" "typescript" "typescriptreact" "html" "yaml"]) (mkFormatter "esbenp.prettier-vscode" ["json" "jsonc" "markdown" "css" "scss" "typescript" "typescriptreact" "html" "yaml"])
(mkFormatter "charliermarsh.ruff" ["python"]) (mkFormatter "charliermarsh.ruff" ["python"])
(mkMcpStdio { # TODO: Enable when switching to 25.11
name = "linear"; # (mkMcpStdio {
command = ["npx" "mcp-remote" "https://mcp.linear.app/sse"]; # name = "linear";
}) # command = ["npx" "mcp-remote" "https://mcp.linear.app/sse"];
(mkMcpStdio { # })
name = "sentry"; # (mkMcpStdio {
command = ["npx" "mcp-remote" "https://mcp.sentry.dev/sse"]; # name = "sentry";
}) # command = ["npx" "mcp-remote" "https://mcp.sentry.dev/sse"];
# })
]; ];
extensions = with vscodePkgs; [ extensions = with vscodePkgs; [
# Remote # Remote