nixos-config/hosts/levi/xorg.nix

11 lines
353 B
Nix
Raw Normal View History

2024-05-06 03:45:03 +00:00
{
### NVIDIA-only using MUX switch in BIOS.
boot.kernelParams = [ "module_blacklist=i915" ];
services.xserver.displayManager.gdm.wayland = false;
services.xserver.videoDrivers = [ "nvidia" ];
2024-09-02 06:47:45 +00:00
hardware.nvidia.open = true;
2024-05-06 03:45:03 +00:00
services.xserver.screenSection = ''
Option "metamodes" "DP-2: 2560x1440_165 +0+0 {AllowGSYNCCompatible=On}"
'';
}