mirror of
https://github.com/nix-community/home-manager
synced 2024-11-10 07:04:17 +00:00
man: install man
, not man-db
This may help with installing on Darwin.
This commit is contained in:
parent
bc40ab378c
commit
335cffe9a9
1 changed files with 1 additions and 1 deletions
|
@ -16,7 +16,7 @@ with lib;
|
||||||
};
|
};
|
||||||
|
|
||||||
config = mkIf config.programs.man.enable {
|
config = mkIf config.programs.man.enable {
|
||||||
home.packages = [ pkgs.man-db ];
|
home.packages = [ pkgs.man ];
|
||||||
home.extraOutputsToInstall = [ "man" ];
|
home.extraOutputsToInstall = [ "man" ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue