summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorzimbatm <zimbatm@zimbatm.com>2016-05-24 09:25:10 +0100
committerzimbatm <zimbatm@zimbatm.com>2016-05-24 09:25:10 +0100
commit4d0a421f18cbb647af349d3a3bd7eceb534e57cc (patch)
tree9b357d17f31cae050c0c1b4b5199b6004b2ea243 /nixos
parente50e376b2b1106d92ccf3c5cb643e1d3b64cb219 (diff)
parent3472b61f371da6b38928f72e8def2809b86aab91 (diff)
downloadnixlib-4d0a421f18cbb647af349d3a3bd7eceb534e57cc.tar
nixlib-4d0a421f18cbb647af349d3a3bd7eceb534e57cc.tar.gz
nixlib-4d0a421f18cbb647af349d3a3bd7eceb534e57cc.tar.bz2
nixlib-4d0a421f18cbb647af349d3a3bd7eceb534e57cc.tar.lz
nixlib-4d0a421f18cbb647af349d3a3bd7eceb534e57cc.tar.xz
nixlib-4d0a421f18cbb647af349d3a3bd7eceb534e57cc.tar.zst
nixlib-4d0a421f18cbb647af349d3a3bd7eceb534e57cc.zip
Merge pull request #15646 from vcunat/p/man-db
man-db: make it the default man provider
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/programs/man.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/programs/man.nix b/nixos/modules/programs/man.nix
index 201144ccb451..e59ffd6f936d 100644
--- a/nixos/modules/programs/man.nix
+++ b/nixos/modules/programs/man.nix
@@ -19,7 +19,7 @@ with lib;
 
   config = mkIf config.programs.man.enable {
 
-    environment.systemPackages = [ pkgs.man ];
+    environment.systemPackages = [ pkgs.man-db ];
 
     environment.pathsToLink = [ "/share/man" ];