Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions hosts/glyph/home.nix
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@

programs.opencode = {
enable = true;
enableMcpIntegration = true;
web.enable = true;
web.extraArgs = ["--port" "8890" "--hostname" "0.0.0.0"];
rules = builtins.readFile "${llm-profile}/README.md";
Expand All @@ -22,10 +23,6 @@
port = 8890;
hostname = "0.0.0.0";
};
mcp.glyph = {
type = "remote";
url = "http://127.0.0.1:8090/mcp";
};
};
};

Expand Down
14 changes: 8 additions & 6 deletions modules/home/development.nix
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,17 @@ in {

config = lib.mkMerge [
(mkIf cfg.ai.enable {
programs.mcp = {
enable = true;
servers.glyph = {
url = "http://glyph:8090/mcp";
};
};

programs.claude-code = {
enable = true;
enableMcpIntegration = true;
memory.source = "${llm-profile}/README.md";
mcpServers = {
glyph = {
type = "http";
url = "http://glyph:8090/mcp";
};
};
settings = {
model = "sonnet";
# Disabled in favor of Basic Memory MCP for cross-device access
Expand Down
Loading