From 4cb1bd3b1b7b9ee29af70bb52f4e31b423c36013 Mon Sep 17 00:00:00 2001 From: Erwin Boskma Date: Tue, 21 Mar 2023 17:23:32 +0100 Subject: [PATCH] Disable HiDPI because it fucks up font rendering somehow --- machines/loki/hardware-configuration.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/machines/loki/hardware-configuration.nix b/machines/loki/hardware-configuration.nix index 93639fa..e68051f 100644 --- a/machines/loki/hardware-configuration.nix +++ b/machines/loki/hardware-configuration.nix @@ -1,4 +1,4 @@ -{ config, lib, ... }: { +{ config, ... }: { boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "ahci" "usb_storage" "usbhid" "sd_mod" ]; boot.initrd.kernelModules = [ ]; boot.kernelModules = [ "kvm-amd" "apple-mfi-fastcharge" "zenpower" "nf_nat_ftp" ]; @@ -24,7 +24,7 @@ swapDevices = [{ device = "/dev/disk/by-uuid/d93788f7-1b94-4687-8313-055d17f42b7e"; }]; # high-resolution display - hardware.video.hidpi.enable = lib.mkDefault true; + # hardware.video.hidpi.enable = lib.mkDefault true; # Enable firmware hardware.enableAllFirmware = true;