nixos_info
Retrieve accurate details about NixOS packages or options by specifying the name, type, and channel. Ensures precise system configuration guidance.
Instructions
Get detailed info about a NixOS package or option.
Args: name: Name of the package or option to look up type: Type of lookup - "package" or "option" channel: NixOS channel to search in (e.g., "unstable", "stable", "25.05")
Returns: Plain text details about the package/option or error message
Input Schema
Name | Required | Description | Default |
---|---|---|---|
channel | No | unstable | |
name | Yes | ||
type | No | package |
Input Schema (JSON Schema)
{
"properties": {
"channel": {
"default": "unstable",
"title": "Channel",
"type": "string"
},
"name": {
"title": "Name",
"type": "string"
},
"type": {
"default": "package",
"title": "Type",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}