Disable proprietary fonts by default.
svn path=/nixos/branches/modular-nixos/; revision=16253
This commit is contained in:
parent
35011ade4e
commit
a62e1cf2dd
@ -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.
|
||||||
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user