web -> http

This commit is contained in:
2024-01-26 21:45:22 +01:00
parent 4a5943d61b
commit 2fd65cf9a8
63 changed files with 52 additions and 52 deletions

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;
}
];
}