From 03942659ca1189ba50f9f1b86bbe6d925eba237b Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Mon, 3 Apr 2017 08:24:32 -0500 Subject: [PATCH] nixos/fontconfig: remove renderMonoTTFAsBitmap --- nixos/modules/config/fonts/fontconfig.nix | 13 ------------- nixos/modules/rename.nix | 1 + 2 files changed, 1 insertion(+), 13 deletions(-) diff --git a/nixos/modules/config/fonts/fontconfig.nix b/nixos/modules/config/fonts/fontconfig.nix index affb46c2ca03..1cf5cb6e0396 100644 --- a/nixos/modules/config/fonts/fontconfig.nix +++ b/nixos/modules/config/fonts/fontconfig.nix @@ -167,13 +167,6 @@ let cfg = config.fonts.fontconfig; - - - - ${fcBool cfg.renderMonoTTFAsBitmap} - - - ''; @@ -446,12 +439,6 @@ in description = ''Use embedded bitmaps in fonts like Calibri.''; }; - renderMonoTTFAsBitmap = mkOption { - type = types.bool; - default = false; - description = ''Render some monospace TTF fonts as bitmaps.''; - }; - }; }; diff --git a/nixos/modules/rename.nix b/nixos/modules/rename.nix index 4cf48e1e2cb5..0174fe544e35 100644 --- a/nixos/modules/rename.nix +++ b/nixos/modules/rename.nix @@ -203,5 +203,6 @@ with lib; (mkRemovedOptionModule [ "services" "xserver" "displayManager" "sddm" "themes" ] "Set the option `services.xserver.displayManager.sddm.package' instead.") (mkRemovedOptionModule [ "fonts" "fontconfig" "forceAutohint" ] "") + (mkRemovedOptionModule [ "fonts" "fontconfig" "renderMonoTTFAsBitmap" ] "") ]; }