1
1
Fork 1
mirror of https://github.com/oddlama/nix-config.git synced 2025-10-10 23:00:39 +02:00

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"];
hardware = {
@ -13,6 +13,9 @@
enable = true;
driSupport = true;
driSupport32Bit = true;
extraPackages = with pkgs; [
nvidia-vaapi-driver
];
};
};
}