mirror of
https://github.com/Ahwxorg/nixos-config.git
synced 2025-12-04 06:50:14 +01:00
9 lines
268 B
Nix
9 lines
268 B
Nix
{
|
|
services.ollama = {
|
|
enable = true;
|
|
# Optional: preload models, see https://ollama.com/library
|
|
# loadModels = [ "llama3.2:3b" "deepseek-r1:1.5b"];
|
|
acceleration = "rocm"; # nope, 5700XT is too old for this
|
|
};
|
|
services.open-webui.enable = true;
|
|
}
|