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

13 lines
274 B
Nix

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