Files
2026-04-29 16:37:13 -05:00

25 lines
585 B
Nix

{
programs.github-copilot-cli = {
enable = true;
mcpServers = {
playwright = {
type = "local";
command = "npx";
args = [ "@playwright/mcp@latest" ];
tools = [ "*" ];
};
context7 = {
type = "http";
url = "https://mcp.context7.com/mcp";
tools = [ "*" ];
};
};
};
nmt.script = ''
assertFileExists home-files/.copilot/mcp-config.json
assertFileContent home-files/.copilot/mcp-config.json ${./expected-mcp-config.json}
assertPathNotExists home-files/.copilot/config.json
'';
}