mirror of
https://github.com/blahai/nyx.git
synced 2025-02-23 13:55:10 +00:00
11 lines
210 B
Nix
11 lines
210 B
Nix
|
{lib, ...}: let
|
||
|
inherit (lib.attrsets) mapAttrs;
|
||
|
inherit (lib.modules) mkForce;
|
||
|
in {
|
||
|
manual = mapAttrs (_: mkForce) {
|
||
|
html.enable = false;
|
||
|
json.enable = false;
|
||
|
manpages.enable = false;
|
||
|
};
|
||
|
}
|