man: install man, not man-db

This may help with installing on Darwin.
This commit is contained in:
Robert Helgesson 2017-10-18 00:33:31 +02:00
parent bc40ab378c
commit 335cffe9a9
No known key found for this signature in database
GPG key ID: C3DB11069E65DC86

View file

@ -16,7 +16,7 @@ with lib;
};
config = mkIf config.programs.man.enable {
home.packages = [ pkgs.man-db ];
home.packages = [ pkgs.man ];
home.extraOutputsToInstall = [ "man" ];
};
}