Files
dotfiles/system-modules/ollama.nix
2025-08-27 21:05:26 +02:00

14 lines
317 B
Nix

{ pkgs, ... }@all: with all;
{
services.ollama = {
package = if hyper.nvidia.enable then pkgs.ollama-cuda else pkgs.ollama;
enable = true;
acceleration = lib.mkIf hyper.nvidia.enable "cuda";
host = "0.0.0.0";
port = 11434;
environmentVariables = {
OLLAMA_ORIGINS = "*";
};
};
}