nix/option/Ollama.nix

22 lines
480 B
Nix
Raw Normal View History

# SRC: https://github.com/ollama/ollama
{ config, lib, ... }:
let
cfg = config.module.ollama;
purpose = config.module.purpose;
in
2024-11-16 04:43:59 +03:00
{
options.module.ollama = {
enable = lib.mkEnableOption "the local LLM server." // {
default = purpose.work;
};
models = lib.mkOption {
default = [ cfg.primaryModel ];
type = with lib.types; listOf str;
};
primaryModel = lib.mkOption {
default = "llama3.2";
type = lib.types.str;
};
};
2024-11-16 04:43:59 +03:00
}