Files
nix-config/hosts/common/optional/services/ollama.nix
2025-07-13 15:44:20 -03:00

18 lines
315 B
Nix

# Enable bluetooth
{
pkgs,
lib,
...
}: {
services.ollama = {
enable = true;
environmentVariables = {
OLLAMA_INTEL_GPU = "1";
OLLAMA_ORIGINS = "moz-extension://*";
};
loadModels = [
];
};
systemd.services.ollama.serviceConfig.MemoryDenyWriteExecute = lib.mkForce false;
}