From 5c577fbd00470ef9417fafdb9de8af62d0e57b6a Mon Sep 17 00:00:00 2001 From: RGBCube Date: Mon, 15 Jan 2024 18:04:28 +0300 Subject: [PATCH] Add documentation module --- modules/documentation.nix | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 modules/documentation.nix diff --git a/modules/documentation.nix b/modules/documentation.nix new file mode 100644 index 0000000..93112cf --- /dev/null +++ b/modules/documentation.nix @@ -0,0 +1,12 @@ +{ ulib, ... }: with ulib; + +systemConfiguration { + documentation = { + doc.enable = false; + info.enable = false; + + man = enabled { + generateCaches = true; + }; + }; +}