mirror of
https://codeberg.org/jopejoe1/nix-conf.git
synced 2025-01-01 14:16:51 +01:00
39 lines
651 B
Nix
39 lines
651 B
Nix
{
|
|
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 = false;
|
|
};
|
|
};
|
|
environment.systemPackages = with pkgs; [
|
|
man-pages
|
|
man-pages-posix
|
|
linux-manual
|
|
];
|
|
};
|
|
}
|