mirror of
https://github.com/nix-community/home-manager
synced 2024-11-10 15:14:26 +00:00
man: prepare for new programs.man
options
This commit is contained in:
parent
605a8fc92e
commit
812b64d4d3
1 changed files with 10 additions and 8 deletions
|
@ -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>.
|
||||
'';
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue