- Remove unused `pkgs` import from hardware and adjust user stateVersion to 25.11 with updated wheel comment. - Split Bash aliases and functions into separate modules and rename `bash.nix` to `bash/default.nix` with imports. - Delete old Bash alias/function files and consolidate them under the new structure. - Simplify `bat.nix` by removing commented style lines. - Increase Cava `frame_rate` from 60 to 144 and clean up legacy color settings. - Refactor Chromium configuration: separate extensions into `extensions.nix` and use a minimal default module. - Replace large Kitty config with minimal enable/module and import `extra-config.nix` and `settings.nix`. - Overhaul Librewolf setup: extract profiles, extensions, search, and settings into dedicated files. - Update home `default.nix` imports to reflect new module paths and remove obsolete references. - Modularize SwayNC by moving settings and style to separate files. - Add explicit Vesktop package definition. - Remove old VSCode module; introduce VSCodium with profile-based extensions, keybindings, and user settings. - Reorganize XDG portal and desktop entries into modular files. - Rebuild Zed configuration: split user settings, language models, languages, LSP, extensions, and extra packages into distinct files.
44 lines
1.1 KiB
Nix
44 lines
1.1 KiB
Nix
_: {
|
|
programs.zed-editor.userSettings.language_models.openai_compatible."Cerebras" = {
|
|
api_url = "https://api.cerebras.ai/v1";
|
|
available_models = [
|
|
{
|
|
name = "qwen-3-235b-a22b-instruct-2507";
|
|
display_name = "Qwen 3 235B Instruct";
|
|
max_tokens = 65000;
|
|
max_output_tokens = 32000;
|
|
capabilities = {
|
|
tools = true;
|
|
images = true;
|
|
parallel_tool_calls = true;
|
|
prompt_cache_key = false;
|
|
};
|
|
}
|
|
{
|
|
name = "llama-3.3-70b";
|
|
display_name = "Llama 3.3 70B";
|
|
max_tokens = 65000;
|
|
max_output_tokens = 8000;
|
|
capabilities = {
|
|
tools = true;
|
|
images = true;
|
|
parallel_tool_calls = true;
|
|
prompt_cache_key = true;
|
|
};
|
|
}
|
|
{
|
|
name = "gpt-oss-120b";
|
|
display_name = "OpenAI GPT OSS";
|
|
max_tokens = 65000;
|
|
max_output_tokens = 32000;
|
|
capabilities = {
|
|
tools = true;
|
|
images = true;
|
|
parallel_tool_calls = true;
|
|
prompt_cache_key = false;
|
|
};
|
|
}
|
|
];
|
|
};
|
|
}
|