MyNixOS website logo
option

programs.claude-code.marketplaces

Custom marketplaces for Claude Code plugins. The attribute name becomes the marketplace name, and the value is either:

  • A path to the marketplace directory
  • The marketplace package, whether a nix package or the output of a fetcher.
Declarations
Type
attribute set of (package or absolute path)
Default
{ }
Example
{
  local-marketplace = ./my-local-marketplace;
  gh-marketplace = fetchFromGithub {
    owner = "some-github-org";
    repo = "claude-marketplace";
    rev = "8a873a220b8427b25b03ce1a821593a24e098c34";
    sha256 = "5c2dce95122b5bb73fa547edabbb6c3061c2d193d11e51faecd4d22659e67279";
  };
}