add doc option

This commit is contained in:
jopejoe1 2024-01-29 11:55:32 +01:00
parent c8c58562bd
commit f8d54acaa8
5 changed files with 74 additions and 66 deletions

View file

@ -7,6 +7,7 @@
./auto-update
./bluetooth
./boot
./doc
./events
./kodi
./keyboard

29
modules/doc/default.nix Normal file
View file

@ -0,0 +1,29 @@
{ config, lib, pkgs, self, ... }:
let cfg = config.jopejoe1.doc;
in {
options.jopejoe1.doc = { enable = lib.mkEnableOption "Enable Documentation"; };
config = lib.mkIf cfg.enable {
documentation = {
enable = true;
doc.enable = true;
dev.enable = true;
info.enable = true;
nixos = {
enable = true;
includeAllModules = true;
options.warningsAreErrors = false;
};
man = {
enable = true;
generateCaches = true;
};
};
environment.systemPackages = with pkgs; [
man-pages
man-pages-posix
linux-manual
];
};
}