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

feat: Add ollama service

This commit is contained in:
Velnbur 2024-06-11 12:22:04 +03:00
parent a35b08d09e
commit 27c9ecdb0d
No known key found for this signature in database

View file

@ -0,0 +1,40 @@
{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.services.ollama;
in {
options = {
services.ollama = {
enable = mkOption {
type = types.bool;
default = false;
description = "Whether to enable the Ollama Daemon.";
};
package = mkOption {
type = types.path;
default = pkgs.ollama;
description = "This option specifies the ollama package to use.";
};
exec = mkOption {
type = types.str;
default = "ollama";
description = "Ollama command/binary to execute.";
};
};
};
config = mkIf cfg.enable {
launchd.user.agents.ollama = {
path = [ config.environment.systemPath ];
serviceConfig.ProgramArguments =
[ "${cfg.package}/bin/${cfg.exec}" "serve" ];
serviceConfig.RunAtLoad = true;
};
};
}