nixos-config/modules/services/server/ollama.nix

24 lines
453 B
Nix
Raw Normal View History

2024-04-06 08:39:22 +02:00
{ config, pkgs, ... }:
let
ollamahostname = "llm.kabtop.de";
in
{
services.ollama = {
enable = true;
listenAddress = "127.0.0.1:11434";
};
services.nginx = {
virtualHosts = {
ollamahostname = {
enableACME = true;
forceSSL = true;
listen = [ {
addr = "127.0.0.1"; port = 11434;
} ];
};
};
};
}