Compare commits
2 commits
69c741e87a
...
d1d6468e19
| Author | SHA1 | Date | |
|---|---|---|---|
| d1d6468e19 | |||
| d566e9e937 |
1 changed files with 20 additions and 0 deletions
|
|
@ -9,6 +9,7 @@
|
||||||
|
|
||||||
"^docs/.*"
|
"^docs/.*"
|
||||||
],
|
],
|
||||||
|
linkToRepo ? false,
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenvNoCC.mkDerivation {
|
stdenvNoCC.mkDerivation {
|
||||||
|
|
@ -79,6 +80,25 @@ stdenvNoCC.mkDerivation {
|
||||||
moduleOptionsDoc =
|
moduleOptionsDoc =
|
||||||
(nixosOptionsDoc {
|
(nixosOptionsDoc {
|
||||||
options = lib.removeAttrs modulesEval.options [ "_module" ];
|
options = lib.removeAttrs modulesEval.options [ "_module" ];
|
||||||
|
transformOptions =
|
||||||
|
opt:
|
||||||
|
opt
|
||||||
|
// {
|
||||||
|
declarations = map (
|
||||||
|
decl:
|
||||||
|
let
|
||||||
|
file = toString decl;
|
||||||
|
in
|
||||||
|
{
|
||||||
|
name = relPath file;
|
||||||
|
url =
|
||||||
|
if linkToRepo then
|
||||||
|
"https://git.shellgod.icu/Sk7Str1p3/nixos/src/branch/main/${relPath file}"
|
||||||
|
else
|
||||||
|
"file://${decl}";
|
||||||
|
}
|
||||||
|
) opt.declarations;
|
||||||
|
};
|
||||||
}).optionsCommonMark;
|
}).optionsCommonMark;
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue