1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-07-30 19:47:47 +00:00

Add documentation module

This commit is contained in:
RGBCube 2024-01-15 18:04:28 +03:00
parent 2530a97d06
commit 5c577fbd00
No known key found for this signature in database

12
modules/documentation.nix Normal file
View file

@ -0,0 +1,12 @@
{ ulib, ... }: with ulib;
systemConfiguration {
documentation = {
doc.enable = false;
info.enable = false;
man = enabled {
generateCaches = true;
};
};
}