more docs!

This commit is contained in:
Peder Bergebakken Sundt 2023-02-28 04:57:58 +01:00
parent a59fad7c03
commit a0854e05f6
3 changed files with 27 additions and 0 deletions

View File

@ -55,7 +55,9 @@
../../profiles/web/docs/pdoc.nix
../../profiles/web/docs/python-docs.nix
../../profiles/web/docs/nixpkgs.nix
../../profiles/web/docs/home-manager.nix
../../profiles/web/docs/linux-docs.nix
../../profiles/web/docs/programs.nix
../../profiles/web/docs/yagcd.nix
../../profiles/web/sites/linktree-pbsds

View File

@ -0,0 +1,10 @@
{ config, pkgs, lib, inputs, ... }:
{
services.docs-to-host.docs = [
{
dirname = "home-manager-manual";
path = "${inputs.home-manager.packages.${config.nixpkgs.system}.docs-html}/share/doc/home-manager";
desc = "Home-Manager - a user environment configurator";
}
];
}

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