home_manager_options_by_prefix
Retrieve Home Manager configuration options starting with a specified prefix to browse categories or locate exact option names, aiding in precise system configuration.
Instructions
Get Home Manager options matching a specific prefix.
Useful for browsing options under a category or finding exact option names.
Args: option_prefix: The prefix to match (e.g., 'programs.git' or 'services')
Returns: Plain text list of options with the given prefix, including descriptions
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| option_prefix | Yes | 
Input Schema (JSON Schema)
{
  "properties": {
    "option_prefix": {
      "title": "Option Prefix",
      "type": "string"
    }
  },
  "required": [
    "option_prefix"
  ],
  "type": "object"
}