modules/profiles/minimal.nix: Disable "man"

This commit is contained in:
Eelco Dolstra 2016-09-05 13:59:07 +02:00
parent a359d330dc
commit 5e5df88457

View file

@ -11,4 +11,6 @@ with lib;
# This isn't perfect, but let's expect the user specifies an UTF-8 defaultLocale
i18n.supportedLocales = [ (config.i18n.defaultLocale + "/UTF-8") ];
services.nixosManual.enable = mkDefault false;
programs.man.enable = mkDefault false;
}