-
-
Notifications
You must be signed in to change notification settings - Fork 130
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: render first module via
site
module
- Loading branch information
1 parent
212fcf4
commit 585b98c
Showing
6 changed files
with
42 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
# Summary | ||
|
||
- [Reference Documentation]() | ||
- [core (built in)](./options/core.md) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<!-- prefaced by the README intro --> | ||
|
||
# This documentation | ||
|
||
You can find guides and the options reference in the menu (top left). | ||
|
||
A site wide search is available by typing `s`. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
{ | ||
self, | ||
lib, | ||
... | ||
}: { | ||
perSystem = { | ||
config, | ||
self', | ||
inputs', | ||
pkgs, | ||
... | ||
}: { | ||
render.inputs = { | ||
core = { | ||
title = "core"; | ||
flake.module = self.modules.dream2nix.core; | ||
flake.outPath = self; | ||
attributePath = ["module"]; | ||
intro = "intro"; | ||
baseUrl = "https://github.com/nix-community/dream2nix/blob/master"; | ||
}; | ||
}; | ||
}; | ||
} |