about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--nixos/modules/hardware/video/hidpi.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/nixos/modules/hardware/video/hidpi.nix b/nixos/modules/hardware/video/hidpi.nix
index 8936b92230b2e..db325976e26c0 100644
--- a/nixos/modules/hardware/video/hidpi.nix
+++ b/nixos/modules/hardware/video/hidpi.nix
@@ -12,8 +12,9 @@ with lib;
     boot.loader.systemd-boot.consoleMode = mkDefault "1";
 
 
-    # Disable font anti-aliasing & sub-pixel rendering by default
+    # Disable font anti-aliasing, hinting, and sub-pixel rendering by default
     fonts.fontconfig.antialias = mkDefault false;
+    fonts.fontconfig.hinting.enable = mkDefault false;
     fonts.fontconfig.subpixel = {
       rgba = mkDefault "none";
       lcdfilter = mkDefault "none";