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:
parent
fad749e243
commit
3d0413374d
1 changed files with 0 additions and 13 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue