more docs!
This commit is contained in:
parent
a59fad7c03
commit
a0854e05f6
|
@ -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
|
||||
|
|
|
@ -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";
|
||||
}
|
||||
];
|
||||
}
|
|
@ -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;
|
||||
}
|
||||
];
|
||||
}
|
Loading…
Reference in New Issue