1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-12-13 04:21:08 +01:00
home-manager/tests/modules/programs/vscode/default.nix
Jacob S. Steward 7c6f7377cc
vscode: enable defining mcp.json separate from settings.json (#7441)
VS Code 1.102 separates MCP configuration from `settings.json` to a profile-specific `mcp.json`. VS Code automatically performs this separation if MCP configuration is detected inside `settings.json` which conflicts with the immutability of the settings.json that home-manager supplies.
2025-07-11 20:33:17 -05:00

7 lines
184 B
Nix

{
vscode-keybindings = ./keybindings.nix;
vscode-tasks = ./tasks.nix;
vscode-mcp = ./mcp.nix;
vscode-update-checks = ./update-checks.nix;
vscode-snippets = ./snippets.nix;
}