nix-config/hosts/goober/features/hardware/nvidia.nix
2025-02-13 23:42:48 +01:00

9 lines
190 B
Nix

{config, pkgs, ...}:
{
boot.blacklistedKernelModules = [ "nouveau" ];
hardware.graphics.enable = true;
services.xserver.videoDrivers = [ "nvidia" ];
hardware.nvidia.open = false;
}