Disable proprietary fonts by default.

svn path=/nixos/branches/modular-nixos/; revision=16253
This commit is contained in:
Ludovic Courtès 2009-07-08 14:52:58 +00:00
parent 35011ade4e
commit a62e1cf2dd

View File

@ -72,16 +72,19 @@ let
extraFonts = mkOption { extraFonts = mkOption {
default = []; default = [];
description = " description = ''
List of additional fonts. List of additional fonts.
"; '';
}; };
enableCoreFonts = mkOption { enableCoreFonts = mkOption {
default = true; default = false;
description = " description = ''
Whether to include MS Core Fonts (redistributable, but only verbatim). Whether to include Microsoft's proprietary Core Fonts. These fonts
"; are redistributable, but only verbatim, among other restrictions.
See <link xlink:href="http://corefonts.sourceforge.net/eula.htm"/>
for details.
'';
}; };
}; };