From cf527df17e4eac08027d5a1a81ae6d3c20f66680 Mon Sep 17 00:00:00 2001 From: Shun Kakinoki Date: Wed, 7 Jan 2026 23:10:42 +0900 Subject: [PATCH] fix(claude): remove Nix management of known_marketplaces.json MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The file contains dynamic fields (installLocation, lastUpdated) that Claude Code manages. Managing it via Nix caused parse errors. The safety-net plugin is still enabled in settings.json and the marketplace will be managed by Claude Code directly. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- config/claude/default.nix | 4 ---- config/claude/known_marketplaces.json | 26 -------------------------- 2 files changed, 30 deletions(-) delete mode 100644 config/claude/known_marketplaces.json diff --git a/config/claude/default.nix b/config/claude/default.nix index c37761761..4fd538924 100644 --- a/config/claude/default.nix +++ b/config/claude/default.nix @@ -23,8 +23,4 @@ source = ./statusline-git.sh; executable = true; }; - - home.file.".claude/plugins/known_marketplaces.json" = { - source = ./known_marketplaces.json; - }; } diff --git a/config/claude/known_marketplaces.json b/config/claude/known_marketplaces.json deleted file mode 100644 index c79510636..000000000 --- a/config/claude/known_marketplaces.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "claude-code-plugins": { - "source": { - "source": "git", - "url": "https://github.com/anthropics/claude-code.git" - } - }, - "claude-plugins-official": { - "source": { - "source": "github", - "repo": "anthropics/claude-plugins-official" - } - }, - "anthropic-agent-skills": { - "source": { - "source": "github", - "repo": "anthropics/skills" - } - }, - "cc-marketplace": { - "source": { - "source": "git", - "url": "https://github.com/kenryu42/cc-marketplace.git" - } - } -}