more stuffies

This commit is contained in:
blahai 2025-02-02 22:07:33 +02:00
parent d6c098bbbe
commit f38cce9ed5
No known key found for this signature in database
9 changed files with 105 additions and 107 deletions

10
modules/home/docs.nix Normal file
View file

@ -0,0 +1,10 @@
{lib, ...}: let
inherit (lib.attrsets) mapAttrs;
inherit (lib.modules) mkForce;
in {
manual = mapAttrs (_: mkForce) {
html.enable = false;
json.enable = false;
manpages.enable = false;
};
}