feat: trying to solve hardware acceleration issue by including libvdpau-va-gl driver support
So far this has not worked in VLC media player, with reasons unknown
This commit is contained in:
parent
6e33f37873
commit
24eb923bbb
1 changed files with 7 additions and 3 deletions
|
@ -1,6 +1,7 @@
|
|||
{
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}: {
|
||||
specialisation = {
|
||||
|
@ -14,7 +15,12 @@
|
|||
};
|
||||
};
|
||||
};
|
||||
hardware.graphics.enable = true;
|
||||
hardware.graphics = {
|
||||
enable = true;
|
||||
extraPackages = with pkgs; [
|
||||
libvdpau-va-gl
|
||||
];
|
||||
};
|
||||
services.xserver.videoDrivers = ["nvidia"];
|
||||
hardware.nvidia = {
|
||||
prime = {
|
||||
|
@ -27,8 +33,6 @@
|
|||
};
|
||||
forceFullCompositionPipeline = true;
|
||||
modesetting.enable = true;
|
||||
powerManagement.enable = false;
|
||||
powerManagement.finegrained = false;
|
||||
# open = true;
|
||||
nvidiaSettings = true;
|
||||
package = config.boot.kernelPackages.nvidiaPackages.beta;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue