programs.mistral-vibe.enable
Whether to enable Mistral Vibe, Mistral’s open-source CLI coding assistant.
Type: boolean
Default:
false
Example:
true
Declared by:
programs.mistral-vibe.package
The mistral-vibe package to use.
Type: null or package
Default:
pkgs.mistral-vibe
Declared by:
programs.mistral-vibe.settings
Mistral Vibe configuration. For available settings see https://github.com/mistralai/mistral-vibe.
Type: TOML value
Default:
{ }
Example:
{
active_model = "devstral-latest";
tool_paths = [];
providers = [
{
name = "mistral";
backend = "mistral";
api_base = "https://api.mistral.ai/v1";
api_key_env_var = "MISTRAL_API_KEY";
api_style = "openai";
}
];
models = [
{
name = "devstral-latest";
provider = "mistral";
alias = "devstral-latest";
temperature = 0.1;
input_price = 0.4;
output_price = 2.0;
}
];
}
Declared by: