more docs!

This commit is contained in:
2023-02-28 04:57:58 +01:00
parent a59fad7c03
commit a0854e05f6
3 changed files with 27 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
{ config, pkgs, lib, inputs, ... }:
{
services.docs-to-host.docs = [
{
dirname = "nginx-manual";
path = "${pkgs.nginx.doc}/share/doc/nginx/en";
desc = pkgs.nginx.meta.description;
}
{
dirname = "postgresql-manual";
path = "${pkgs.postgresql.doc}/share/doc/postgresql/html";
desc = pkgs.postgresql.meta.description;
}
];
}