nix-config/hosts/goober/features/hardware/nvidia.nix

9 lines
190 B
Nix
Raw Normal View History

2025-02-12 10:11:34 +01:00
{config, pkgs, ...}:
2025-02-09 17:30:51 +01:00
{
2025-02-13 23:42:48 +01:00
boot.blacklistedKernelModules = [ "nouveau" ];
2025-02-09 17:30:51 +01:00
hardware.graphics.enable = true;
2025-02-13 23:42:48 +01:00
services.xserver.videoDrivers = [ "nvidia" ];
hardware.nvidia.open = false;
2025-02-09 17:30:51 +01:00
}