aboutsummaryrefslogtreecommitdiff
path: root/modules/programs/opencode.nix
blob: 4053d4a35dc16fd5f7dff059ca2c3c8a567cde63 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
  flake.modules.homeManager.opencode =
    { inputs, ... }:
    {
      imports = [
        inputs.self.modules.homeManager.mcp
      ];

      programs.opencode = {
        enable = true;
        enableMcpIntegration = true;
        settings = {
          plugin = [ "opencode-antigravity-auth@latest" ];
        };
      };
    };
}