From e7cd18e90709673de175d67d9d2033b26555640d Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Thu, 27 Nov 2014 17:35:23 +0100 Subject: [PATCH] Don't set $MANPATH The default is derived automatically from $PATH, so it's in fact better *not* to set it. --- nixos/modules/programs/environment.nix | 1 - 1 file changed, 1 deletion(-) diff --git a/nixos/modules/programs/environment.nix b/nixos/modules/programs/environment.nix index d79aff5dc55..a5ec387df64 100644 --- a/nixos/modules/programs/environment.nix +++ b/nixos/modules/programs/environment.nix @@ -40,7 +40,6 @@ in # TODO: move most of these elsewhere environment.profileRelativeEnvVars = { PATH = [ "/bin" "/sbin" "/lib/kde4/libexec" ]; - MANPATH = [ "/man" "/share/man" ]; INFOPATH = [ "/info" "/share/info" ]; PKG_CONFIG_PATH = [ "/lib/pkgconfig" ]; TERMINFO_DIRS = [ "/share/terminfo" ];