mirror of
https://github.com/nix-community/home-manager
synced 2024-12-24 18:59:47 +01: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,7 +4,8 @@ with lib;
|
|||
|
||||
{
|
||||
options = {
|
||||
programs.man.enable = mkOption {
|
||||
programs.man = {
|
||||
enable = mkOption {
|
||||
type = types.bool;
|
||||
default = true;
|
||||
description = ''
|
||||
|
@ -14,6 +15,7 @@ with lib;
|
|||
'';
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
config = mkIf config.programs.man.enable {
|
||||
home.packages = [ pkgs.man ];
|
||||
|
|
Loading…
Reference in a new issue