MyNixOS website logo

List of plugins to use when running Claude Code. Each entry is either:

  • A path to the plugin directory
  • The plugin package, whether a nix package or the output of a fetcher Plugins are enabled via a --plugin-dir argument in the wrapper script.
Declarations
Type
list of (package or absolute path)
Default
[ ]
Example
[
  ./my-local-plugin
  fetchFromGithub {
    owner = "some-github-org";
    repo = "claude-plugin";
    rev = "779a68ebc2a75e4a184d2c87e5a43a758e6458a1";
    sha256 = "228fdd7e5908ea1d2f65218ecd9c71e1eefa0834d200d55fbb8bf8b5563acec0";
  }
]