{ config, lib, pkgs, ... }: with lib; let cfg = config.documentation; in { options = { documentation = { enable = mkOption { type = types.bool; default = true; description = '' Whether to install documentation of packages from into the generated system path. See "Multiple-output packages" chapter in the nixpkgs manual for more info. ''; # which is at ../../../doc/multiple-output.xml }; man.enable = mkOption { type = types.bool; default = true; description = '' Whether to install manual pages and the man command. This also includes "man" outputs. ''; }; info.enable = mkOption { type = types.bool; default = true; description = '' Whether to install info pages and the info command. This also includes "info" outputs. ''; }; doc.enable = mkOption { type = types.bool; default = true; description = '' Whether to install documentation distributed in packages' /share/doc. Usually plain text and/or HTML. This also includes "doc" outputs. ''; }; dev.enable = mkOption { type = types.bool; default = false; description = '' Whether to install documentation targeted at developers. This includes man pages targeted at developers if is set (this also includes "devman" outputs). This includes info pages targeted at developers if is set (this also includes "devinfo" outputs). This includes other pages targeted at developers if is set (this also includes "devdoc" outputs). ''; }; }; }; config = mkIf cfg.enable (mkMerge [ (mkIf cfg.man.enable { environment.systemPackages = [ pkgs.man-db ]; environment.pathsToLink = [ "/share/man" ]; environment.extraOutputsToInstall = [ "man" ] ++ optional cfg.dev.enable "devman"; }) (mkIf cfg.info.enable { environment.systemPackages = [ pkgs.texinfoInteractive ]; environment.pathsToLink = [ "/share/info" ]; environment.extraOutputsToInstall = [ "info" ] ++ optional cfg.dev.enable "devinfo"; }) (mkIf cfg.doc.enable { # TODO(@oxij): put it here and remove from profiles? # environment.systemPackages = [ pkgs.w3m ]; # w3m-nox? environment.pathsToLink = [ "/share/doc" ]; environment.extraOutputsToInstall = [ "doc" ] ++ optional cfg.dev.enable "devdoc"; }) ]); }