mirror of
https://github.com/LnL7/nix-darwin.git
synced 2025-03-31 04:04:45 +00:00
Add log file option to ollama
service
This commit is contained in:
parent
be6f14ea10
commit
fad749e243
1 changed files with 13 additions and 0 deletions
|
@ -72,6 +72,16 @@ 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.
|
||||
'';
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
|
@ -87,6 +97,9 @@ 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