about summary refs log tree commit diff stats
path: root/sys/documentation
diff options
context:
space:
mode:
authorSoispha <soispha@vhack.eu>2023-08-28 23:39:52 +0200
committerSoispha <soispha@vhack.eu>2023-08-28 23:39:52 +0200
commita40d083efe6c396373c248386980d2ed504bcebd (patch)
tree2461fbe3db32c87201824c47dad9b77057cc2551 /sys/documentation
parentFeat(sys/svcs/getty): Init (diff)
downloadnixos-config-a40d083efe6c396373c248386980d2ed504bcebd.tar.gz
nixos-config-a40d083efe6c396373c248386980d2ed504bcebd.zip
Feat(sys/documentation): Init
Diffstat (limited to 'sys/documentation')
-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;
+    };
+  };
+}