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

Remove "home" option

This commit is contained in:
Velnbur 2024-06-27 20:27:25 +03:00
parent 3d0413374d
commit 43de1c87a1
No known key found for this signature in database

View file

@ -39,15 +39,6 @@ in {
'';
};
home = lib.mkOption {
type = types.str;
default = "$HOME";
example = "/home/foo";
description = ''
The home directory that the ollama service is started in.
'';
};
models = mkOption {
type = types.str;
default = "$HOME/.ollama/models";
@ -88,7 +79,6 @@ in {
ProgramArguments = [ "${cfg.package}/bin/ollama" "serve" ];
EnvironmentVariables = cfg.environmentVariables // {
HOME = cfg.home;
OLLAMA_MODELS = cfg.models;
OLLAMA_HOST = "${cfg.host}:${toString cfg.port}";
};