Files
nix-dotfiles-v2/modules/docling.nix
2026-01-02 22:41:52 +01:00

17 lines
247 B
Nix

{
config,
pkgs,
lib,
...
}:
{
services.docling-serve = {
enable = true; # this is broken for now.
package = pkgs.unstable.python313Packages.docling-serve;
port = 5001;
host = "127.0.0.1";
openFirewall = true;
};
}