1
0
mirror of https://github.com/XNM1/linux-nixos-hyprland-config-dotfiles.git synced 2025-09-15 09:45:58 +03:00

feat(config): 🔧 Update model configuration and system packages

- Changed default model from `moonshot/kimi-k2-0711-preview` to
`z/glm-4.5`
- Added new provider configuration for Z AI with GLM-4.5 model
- Added hyprpolkitagent to Hyprland packages
- Updated Ollama models list (removed some Gemma models, added
qwen3-coder)
- Added chromium and playwright to system packages
This commit is contained in:
xnm
2025-08-03 16:00:47 +03:00
parent b6318f0885
commit ff45ab768d
3 changed files with 18 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
{
"$schema": "https://opencode.ai/config.json",
"model": "moonshot/kimi-k2-0711-preview",
"model": "z/glm-4.5",
"theme": "catppuccin",
"provider": {
"moonshot": {
@@ -14,6 +14,18 @@
"name": "Kimi-K2"
}
}
},
"z": {
"name": "Z",
"npm": "@ai-sdk/openai-compatible",
"options": {
"baseURL": "https://api.z.ai/api/paas/v4"
},
"models": {
"glm-4.5": {
"name": "GLM-4.5"
}
}
}
},
"mcp": {

View File

@@ -19,6 +19,7 @@
hyprlock
hypridle
hyprpaper
hyprpolkitagent
inputs.wezterm.packages.${pkgs.system}.default
kitty

View File

@@ -4,7 +4,7 @@
services.ollama = {
enable = true;
loadModels = [ "llama3.2:3b" "phi4-reasoning:14b" "dolphin3:8b" "smallthinker:3b" "gemma3n:e4b" "gemma3:12b" "gemma3:27b" "deepcoder:14b" "qwen3:14b" "nomic-embed-text" ];
loadModels = [ "llama3.2:3b" "phi4-reasoning:14b" "dolphin3:8b" "smallthinker:3b" "gemma3n:e4b" "deepcoder:14b" "qwen3:14b" "qwen3-coder:30b" "nomic-embed-text" ];
acceleration = "cuda";
};
@@ -47,5 +47,8 @@
# smartcat
# nextjs-ollama-llm-ui
# open-webui
chromium
playwright
];
}