1
1
Fork 0
nixos/options/custom/services/ollama.nix
Myned c592e0f1ab
custom: add ollama service
Signed-off-by: Myned <dev@bjork.tech>
2025-03-14 16:48:08 -05:00

27 lines
493 B
Nix

{
config,
lib,
pkgs,
...
}:
with lib; let
cfg = config.custom.services.ollama;
in {
options.custom.services.ollama = {
enable = mkOption {default = false;};
};
config = mkIf cfg.enable {
# https://ollama.com/
# https://wiki.nixos.org/wiki/Ollama
services.ollama = {
enable = true;
openFirewall = true;
package = pkgs.ollama-rocm;
loadModels = [
"deepseek-r1" # https://github.com/deepseek-ai/DeepSeek-R1
];
};
};
}