diff --git a/modules/programs/man.nix b/modules/programs/man.nix index 0ed376780..2968ccf48 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 man - command. This also includes "man" outputs of all - home.packages. - ''; + programs.man = { + enable = mkOption { + type = types.bool; + default = true; + description = '' + Whether to enable manual pages and the man + command. This also includes "man" outputs of all + home.packages. + ''; + }; }; };