1
0
mirror of https://github.com/XNM1/linux-nixos-hyprland-config-dotfiles.git synced 2025-09-15 09:45:58 +03:00
Files
linux-nixos-hyprland-config…/nixos/llm.nix
xnm f6c0b339a0 LLM Update
Changelog:
- Added `ollama` with `nextjs-ollama-llm-ui`.
- Added `helix-gpt` and `lsp-ai` packages.
- Added `nvtop` package with Nvidia and Intel GPUs support.
2024-09-29 23:11:12 +03:00

11 lines
234 B
Nix

{ pkgs, ... }:
{
services.ollama.enable = true;
services.ollama.loadModels = [ "llama3.2" ];
services.ollama.acceleration = "cuda";
services.nextjs-ollama-llm-ui.enable = true;
services.nextjs-ollama-llm-ui.port = 5000;
}