mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-22 19:15:37 +00:00
possible fixes to hardware acceleration
This commit is contained in:
parent
fb44473d22
commit
18154b6579
@ -22,7 +22,6 @@ nixpkgs.lib.nixosSystem {
|
|||||||
boot.initrd.availableKernelModules =
|
boot.initrd.availableKernelModules =
|
||||||
[ "xhci_pci" "ahci" "nvme" "usb_storage" "sd_mod" ];
|
[ "xhci_pci" "ahci" "nvme" "usb_storage" "sd_mod" ];
|
||||||
boot.initrd.kernelModules = [ "amdgpu" ];
|
boot.initrd.kernelModules = [ "amdgpu" ];
|
||||||
boot.kernelModules = [ "kvm-intel" ];
|
|
||||||
hardware.enableRedistributableFirmware = true;
|
hardware.enableRedistributableFirmware = true;
|
||||||
powerManagement.cpuFreqGovernor = "powersave";
|
powerManagement.cpuFreqGovernor = "powersave";
|
||||||
hardware.cpu.intel.updateMicrocode = true;
|
hardware.cpu.intel.updateMicrocode = true;
|
||||||
|
@ -34,6 +34,13 @@
|
|||||||
driSupport = true;
|
driSupport = true;
|
||||||
extraPackages = [ pkgs.libva ];
|
extraPackages = [ pkgs.libva ];
|
||||||
};
|
};
|
||||||
|
environment.systemPackages = [ pkgs.libva-utils ];
|
||||||
|
environment.variables = {
|
||||||
|
# VAAPI and VDPAU config for accelerated video.
|
||||||
|
# See https://wiki.archlinux.org/index.php/Hardware_video_acceleration
|
||||||
|
"VDPAU_DRIVER" = "radeonsi";
|
||||||
|
"LIBVA_DRIVER_NAME" = "radeonsi";
|
||||||
|
};
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user