feat: add nvidia-vaapi-driver

This commit is contained in:
oddlama 2023-09-08 14:29:43 +02:00
parent fa788e4ce5
commit 12bc13c82e
No known key found for this signature in database
GPG key ID: 14EFE510775FE39A

View file

@ -1,4 +1,4 @@
{ {pkgs, ...}: {
boot.blacklistedKernelModules = ["nouveau"]; boot.blacklistedKernelModules = ["nouveau"];
hardware = { hardware = {
@ -13,6 +13,9 @@
enable = true; enable = true;
driSupport = true; driSupport = true;
driSupport32Bit = true; driSupport32Bit = true;
extraPackages = with pkgs; [
nvidia-vaapi-driver
];
}; };
}; };
} }