nixos-config/hosts/levi/xorg.nix
2024-11-04 22:58:26 -05:00

10 lines
353 B
Nix

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