diff --git a/modules/config/fonts.nix b/modules/config/fonts.nix index 47e505b3cb56..51ddc9e5d438 100644 --- a/modules/config/fonts.nix +++ b/modules/config/fonts.nix @@ -72,16 +72,19 @@ let extraFonts = mkOption { default = []; - description = " + description = '' List of additional fonts. - "; + ''; }; enableCoreFonts = mkOption { - default = true; - description = " - Whether to include MS Core Fonts (redistributable, but only verbatim). - "; + default = false; + description = '' + Whether to include Microsoft's proprietary Core Fonts. These fonts + are redistributable, but only verbatim, among other restrictions. + See + for details. + ''; }; };