{ config, pkgs, lib, ... }: { # systemd.tmpfiles.rules = [ "d /data/ollama 0750 ostgres postgres" ]; services.ollama = { enable = true; home = "/data/ollama/home"; models = "/data/ollama/home/models"; environmentVariables = { OLLAMA_LLM_LIBRARY = "cpu_avx2"; }; writablePaths = [ "/data/ollama/home" ]; listenAddress = "0.0.0.0:11434"; sandbox = false; }; }