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

added LLM models and AI tools, disabled nextjs-ollama-ui, enabled Nvidia proprietary drivers

This commit is contained in:
xnm
2024-10-04 21:05:21 +03:00
parent f6c0b339a0
commit 71c7708495
5 changed files with 17 additions and 12 deletions

View File

@@ -2,9 +2,13 @@
{
services.ollama.enable = true;
services.ollama.loadModels = [ "llama3.2" ];
services.ollama.loadModels = [ "llama3.2:3b" "dolphin-llama3:8b" "qwen2.5-coder:7b" "llava-llama3:8b" "phi3.5:3.8b" ];
services.ollama.acceleration = "cuda";
services.nextjs-ollama-llm-ui.enable = true;
services.nextjs-ollama-llm-ui.port = 5000;
environment.systemPackages = with pkgs; [
oterm
alpaca
nextjs-ollama-llm-ui
aichat
];
}