From 21c9190a5fd8387c90feff08198c47894c0a541d Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Mon, 3 Apr 2017 08:23:32 -0500 Subject: [PATCH] nixos/fontconfig: remove forceAutohint option --- nixos/modules/config/fonts/fontconfig.nix | 16 ---------------- nixos/modules/rename.nix | 1 + 2 files changed, 1 insertion(+), 16 deletions(-) diff --git a/nixos/modules/config/fonts/fontconfig.nix b/nixos/modules/config/fonts/fontconfig.nix index 93c5f2df725..affb46c2ca0 100644 --- a/nixos/modules/config/fonts/fontconfig.nix +++ b/nixos/modules/config/fonts/fontconfig.nix @@ -104,13 +104,6 @@ let cfg = config.fonts.fontconfig; ''} - - - - ${fcBool cfg.forceAutohint} - - - ''; @@ -453,15 +446,6 @@ in description = ''Use embedded bitmaps in fonts like Calibri.''; }; - forceAutohint = mkOption { - type = types.bool; - default = false; - description = '' - Force use of the TrueType Autohinter. Useful for debugging or - free-software purists. - ''; - }; - renderMonoTTFAsBitmap = mkOption { type = types.bool; default = false; diff --git a/nixos/modules/rename.nix b/nixos/modules/rename.nix index 54433e20597..4cf48e1e2cb 100644 --- a/nixos/modules/rename.nix +++ b/nixos/modules/rename.nix @@ -202,5 +202,6 @@ with lib; (mkRemovedOptionModule [ "fonts" "fontconfig" "hinting" "style" ] "") (mkRemovedOptionModule [ "services" "xserver" "displayManager" "sddm" "themes" ] "Set the option `services.xserver.displayManager.sddm.package' instead.") + (mkRemovedOptionModule [ "fonts" "fontconfig" "forceAutohint" ] "") ]; }