aboutsummaryrefslogtreecommitdiffstats
path: root/sys/documentation
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--sys/documentation/default.nix15
1 files changed, 15 insertions, 0 deletions
diff --git a/sys/documentation/default.nix b/sys/documentation/default.nix
new file mode 100644
index 00000000..6e7f4912
--- /dev/null
+++ b/sys/documentation/default.nix
@@ -0,0 +1,15 @@
+{...}: {
+ documentation = {
+ nixos = {
+ # TODO: Enable this, when the build is no longer local (i.e. I've access to a remote build server) <2023-08-28>
+ includeAllModules = true;
+
+ # I don't use this, and it has a considerable build time.
+ enable = false;
+ };
+ dev = {
+ # Add man pages aimed at developers (I guess c library stuff, and the like)
+ enable = true;
+ };
+ };
+}