a dotfile but it's really big
0
fork

Configure Feed

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

opencode: only do sentry & linear on kiwi

karitham 420f791d 797a59df

+14 -16
+14 -3
hosts/kiwi/desktop.nix
··· 15 15 16 16 programs = { 17 17 waybar.settings.mainBar.battery.bat = lib.mkForce "BAT0"; 18 - 19 - zed-editor = { 20 - enable = true; 18 + opencode.settings.mcp = { 19 + linear = { 20 + type = "remote"; 21 + url = "https://mcp.linear.app/mcp"; 22 + enabled = true; 23 + headers = { 24 + Authorization = "Bearer {env:LINEAR_API_KEY}"; 25 + }; 26 + }; 27 + sentry = { 28 + type = "local"; 29 + enabled = true; 30 + command = ["${pkgs.bun}/bin/bun" "x" "mcp-remote@latest" "https://mcp.sentry.dev/mcp"]; 31 + }; 21 32 }; 22 33 }; 23 34 }
-13
modules/home/dev/opencode.nix
··· 38 38 }; 39 39 }; 40 40 mcp = { 41 - linear = { 42 - type = "remote"; 43 - url = "https://mcp.linear.app/mcp"; 44 - enabled = true; 45 - headers = { 46 - Authorization = "Bearer {env:LINEAR_API_KEY}"; 47 - }; 48 - }; 49 41 gopls = { 50 42 type = "local"; 51 43 enabled = true; 52 44 command = ["gopls" "mcp"]; 53 - }; 54 - sentry = { 55 - type = "local"; 56 - enabled = true; 57 - command = ["${pkgs.bun}/bin/bun" "x" "mcp-remote@latest" "https://mcp.sentry.dev/mcp"]; 58 45 }; 59 46 }; 60 47 };