Hide the option fonts.enableCoreFonts

We shouldn't have options that simply enable a package.

+4
+4
nixos/modules/config/fonts/corefonts.nix
··· 1 { config, lib, pkgs, ... }: 2 3 with lib; ··· 9 fonts = { 10 11 enableCoreFonts = mkOption { 12 default = false; 13 description = '' 14 Whether to include Microsoft's proprietary Core Fonts. These fonts
··· 1 + # This module is deprecated, since you can just say ‘fonts.fonts = [ 2 + # pkgs.corefonts ];’ instead. 3 + 4 { config, lib, pkgs, ... }: 5 6 with lib; ··· 12 fonts = { 13 14 enableCoreFonts = mkOption { 15 + visible = false; 16 default = false; 17 description = '' 18 Whether to include Microsoft's proprietary Core Fonts. These fonts