2017-01-15 20:56:18 +01:00
|
|
|
{ config, lib, pkgs, baseModules, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
/* For the purpose of generating docs, evaluate options with each derivation
|
|
|
|
in `pkgs` (recursively) replaced by a fake with path "\${pkgs.attribute.path}".
|
|
|
|
It isn't perfect, but it seems to cover a vast majority of use cases.
|
|
|
|
Caveat: even if the package is reached by a different means,
|
|
|
|
the path above will be shown and not e.g. `${config.services.foo.package}`. */
|
2018-05-07 00:10:58 +02:00
|
|
|
homeManagerManual = import ../doc {
|
2017-01-15 20:56:18 +01:00
|
|
|
inherit pkgs config;
|
|
|
|
version = "0.1";
|
|
|
|
revision = "release-0.1";
|
|
|
|
options =
|
|
|
|
let
|
|
|
|
scrubbedEval = evalModules {
|
2018-05-06 22:14:50 +02:00
|
|
|
modules = [ { nixpkgs.localSystem = config.nixpkgs.localSystem; } ] ++ baseModules;
|
2017-01-15 20:56:18 +01:00
|
|
|
args = (config._module.args) // { modules = [ ]; };
|
|
|
|
specialArgs = { pkgs = scrubDerivations "pkgs" pkgs; };
|
|
|
|
};
|
|
|
|
scrubDerivations = namePrefix: pkgSet: mapAttrs
|
|
|
|
(name: value:
|
|
|
|
let wholeName = "${namePrefix}.${name}"; in
|
|
|
|
if isAttrs value then
|
|
|
|
scrubDerivations wholeName value
|
|
|
|
// (optionalAttrs (isDerivation value) { outPath = "\${${wholeName}}"; })
|
|
|
|
else value
|
|
|
|
)
|
|
|
|
pkgSet;
|
|
|
|
in scrubbedEval.options;
|
|
|
|
};
|
|
|
|
|
|
|
|
in
|
|
|
|
|
|
|
|
{
|
|
|
|
options = {
|
|
|
|
manual.manpages.enable = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = true;
|
|
|
|
example = false;
|
|
|
|
description = ''
|
|
|
|
Whether to install the configuration manual page. The manual can
|
|
|
|
be reached by <command>man home-configuration.nix</command>.
|
|
|
|
</para><para>
|
|
|
|
When looking at the manual page pretend that all references to
|
|
|
|
NixOS stuff are actually references to Home Manager stuff.
|
|
|
|
Thanks!
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf config.manual.manpages.enable {
|
2018-05-06 22:14:50 +02:00
|
|
|
home.packages = [ homeManagerManual.manpages ];
|
2017-01-15 20:56:18 +01:00
|
|
|
};
|
2017-07-21 21:10:32 +02:00
|
|
|
|
|
|
|
# To fix error during manpage build.
|
2017-09-26 23:40:31 +02:00
|
|
|
meta = {
|
|
|
|
maintainers = [ maintainers.rycee ];
|
2018-05-06 22:14:50 +02:00
|
|
|
doc = builtins.toFile "nothingness" "";
|
2017-09-26 23:40:31 +02:00
|
|
|
};
|
2017-01-15 20:56:18 +01:00
|
|
|
}
|