From 9ba582c7cf44b163dd60d0eb14818f5c10b64f18 Mon Sep 17 00:00:00 2001 From: Andrew Williams Date: Wed, 27 Mar 2024 23:02:59 +0000 Subject: [PATCH] Remove antialiasing --- hardware/p8-laptop.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/hardware/p8-laptop.nix b/hardware/p8-laptop.nix index f99faff..7773e5c 100644 --- a/hardware/p8-laptop.nix +++ b/hardware/p8-laptop.nix @@ -6,6 +6,9 @@ ./intel-uhd.nix ]; + # Extra kernel modules + boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "usbhid" "thunderbolt" ]; + # Fix on boot framebuffer res and rotation boot.kernelParams = [ @@ -23,6 +26,7 @@ # Per the documentation, antialiasing, hinting, etc. have no visible effect at such high pixel densities anyhow. # Set manually, as the hiDPI module had incorrect settings prior to NixOS 22.11; see nixpkgs#194594. hinting.enable = false; + antialias = false; }; # Provide rotation to X/Wayland