17 lines
328 B
Nix
17 lines
328 B
Nix
|
{ pkgs, ... }:
|
||
|
{
|
||
|
hardware = {
|
||
|
nvidia = {
|
||
|
open = true; # Set to false to use the proprietary kernel module
|
||
|
forceFullCompositionPipeline = true;
|
||
|
};
|
||
|
|
||
|
graphics = {
|
||
|
enable = true;
|
||
|
extraPackages = with pkgs; [ nvidia-vaapi-driver ];
|
||
|
};
|
||
|
};
|
||
|
|
||
|
services.xserver.videoDrivers = [ "nvidia" ];
|
||
|
}
|