added basic docling

This commit is contained in:
2025-12-08 16:44:12 +01:00
parent 64f8f359eb
commit c76199e73c
2 changed files with 20 additions and 0 deletions

View File

@@ -34,6 +34,7 @@
../../modules/jupyterhub.nix
../../modules/blog.nix
../../modules/ollama.nix
../../modules/docling.nix # temp for dev
../../modules/kdeconnect.nix
../../modules/desktopApplications.nix

19
modules/docling.nix Normal file
View File

@@ -0,0 +1,19 @@
{
config,
pkgs,
lib,
...
}:
{
services.docling-serve = {
enable = true;
port = 5001;
host = "0.0.0.0";
openFirewall = true;
#environment
#environmentFile
};
}