1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-02 04:53:33 +02:00

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" ];
};
}