man: prepare for new programs.man options

This commit is contained in:
Damien Cassou
2020-09-09 08:11:36 +02:00
committed by Robert Helgesson
parent 605a8fc92e
commit 812b64d4d3

View File

@@ -4,14 +4,16 @@ with lib;
{
options = {
programs.man.enable = mkOption {
type = types.bool;
default = true;
description = ''
Whether to enable manual pages and the <command>man</command>
command. This also includes "man" outputs of all
<literal>home.packages</literal>.
'';
programs.man = {
enable = mkOption {
type = types.bool;
default = true;
description = ''
Whether to enable manual pages and the <command>man</command>
command. This also includes "man" outputs of all
<literal>home.packages</literal>.
'';
};
};
};