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;