about summary refs log tree commit diff
diff options
context:
space:
mode:
authorThomas Tuegel <ttuegel@mailbox.org>2017-04-03 08:24:32 -0500
committerThomas Tuegel <ttuegel@mailbox.org>2017-04-03 08:24:32 -0500
commit03942659ca1189ba50f9f1b86bbe6d925eba237b (patch)
tree28d0a8fe2a97ce053dcb2f8bd9c015c86ce86fcf
parent21c9190a5fd8387c90feff08198c47894c0a541d (diff)
downloadnixlib-03942659ca1189ba50f9f1b86bbe6d925eba237b.tar
nixlib-03942659ca1189ba50f9f1b86bbe6d925eba237b.tar.gz
nixlib-03942659ca1189ba50f9f1b86bbe6d925eba237b.tar.bz2
nixlib-03942659ca1189ba50f9f1b86bbe6d925eba237b.tar.lz
nixlib-03942659ca1189ba50f9f1b86bbe6d925eba237b.tar.xz
nixlib-03942659ca1189ba50f9f1b86bbe6d925eba237b.tar.zst
nixlib-03942659ca1189ba50f9f1b86bbe6d925eba237b.zip
nixos/fontconfig: remove renderMonoTTFAsBitmap
-rw-r--r--nixos/modules/config/fonts/fontconfig.nix13
-rw-r--r--nixos/modules/rename.nix1
2 files changed, 1 insertions, 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;
         </edit>
       </match>
 
-      <!-- Render some monospace TTF fonts as bitmaps -->
-      <match target="pattern">
-        <edit name="bitmap_monospace" mode="assign">
-          ${fcBool cfg.renderMonoTTFAsBitmap}
-        </edit>
-      </match>
-
       </fontconfig>
     '';
 
@@ -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" ] "")
   ];
 }