nix-deploy/config/common/configuration/documentation.nix

13 lines
203 B
Nix
Raw Normal View History

2023-11-29 15:09:10 +01:00
{ ... }:
{
# Some docs fail to build, so we need to disable some of it
documentation = {
enable = true;
man.enable = true;
doc.enable = true;
dev.enable = false;
nixos.enable = false;
};
}