Files
nix-config/hosts/common/optional/services/ollama.nix

17 lines
271 B
Nix

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