diff options
author | Alan Pearce | 2019-05-23 12:54:32 +0200 |
---|---|---|
committer | Alan Pearce | 2019-05-28 09:58:41 +0200 |
commit | 29b593e4c41d0edd742fc91c96477553a574fba3 (patch) | |
tree | 7dd55ad54125993d6c4211ea336b3d8274918a46 /modules/hardware | |
parent | d23fb647b7abdd5a1676cf0091b43de1d1ea2218 (diff) | |
download | nixos-configuration-29b593e4c41d0edd742fc91c96477553a574fba3.tar.lz nixos-configuration-29b593e4c41d0edd742fc91c96477553a574fba3.tar.zst nixos-configuration-29b593e4c41d0edd742fc91c96477553a574fba3.zip |
Intel: Don't prefer modesetting driver
Screen tearing, different monitor names, panned login screen
Diffstat (limited to 'modules/hardware')
-rw-r--r-- | modules/hardware/intel-gpu.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/hardware/intel-gpu.nix b/modules/hardware/intel-gpu.nix index 804e1e6..6e0c207 100644 --- a/modules/hardware/intel-gpu.nix +++ b/modules/hardware/intel-gpu.nix @@ -6,7 +6,7 @@ libvdpau-va-gl ]; - services.xserver.videoDrivers = [ "modesetting" "intel" ]; + services.xserver.videoDrivers = [ "intel" "modesetting" ]; boot.earlyVconsoleSetup = true; boot.initrd.kernelModules = [ |