1
0
Fork 0
mirror of https://github.com/LnL7/nix-darwin.git synced 2025-03-31 04:04:45 +00:00

Revert "Add log file option to ollama service"

This reverts commit 585e30161339e5a4fbda8b021efd71c66728951e.
This commit is contained in:
Velnbur 2024-06-20 21:15:41 +03:00
parent fad749e243
commit 3d0413374d
No known key found for this signature in database

View file

@ -72,16 +72,6 @@ in {
Since `ollama run` is mostly a shell around the ollama server, this is usually sufficient.
'';
};
logFile = mkOption {
type = types.nullOr types.path;
default = null;
example = "/var/tmp/ollama.log";
description = ''
The file to write the ollama server logs to.
If not set, logs are written to stdout.
'';
};
};
};
@ -97,9 +87,6 @@ in {
RunAtLoad = true;
ProgramArguments = [ "${cfg.package}/bin/ollama" "serve" ];
StandardOutPath = cfg.logFile;
StandardErrorPath = cfg.logFile;
EnvironmentVariables = cfg.environmentVariables // {
HOME = cfg.home;
OLLAMA_MODELS = cfg.models;