aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien Cassou <damien@cassou.me>2020-09-09 08:11:36 +0200
committerRobert Helgesson <robert@rycee.net>2020-09-11 20:16:33 +0200
commit812b64d4d3c243bf7b6d08e9d210750f53e39e22 (patch)
tree98908c554b9e639639168b5d12553117e52662af
parent605a8fc92e2bb346b17d102d94d37af23c9b7d4e (diff)
man: prepare for new `programs.man` options
-rw-r--r--modules/programs/man.nix18
1 files changed, 10 insertions, 8 deletions
diff --git a/modules/programs/man.nix b/modules/programs/man.nix
index 0ed376780d4..2968ccf4845 100644
--- a/modules/programs/man.nix
+++ b/modules/programs/man.nix
@@ -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>.
+ '';
+ };
};
};