config/profiles/http/docs/programs.nix

16 lines
390 B
Nix
Raw Normal View History

2023-02-28 04:57:58 +01:00
{ 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;
}
];
}