nyx/modules/home/docs.nix

11 lines
210 B
Nix
Raw Permalink Normal View History

2025-02-02 22:07:33 +02:00
{lib, ...}: let
inherit (lib.attrsets) mapAttrs;
inherit (lib.modules) mkForce;
in {
manual = mapAttrs (_: mkForce) {
html.enable = false;
json.enable = false;
manpages.enable = false;
};
}