1
0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-07-03 09:53:28 +02:00
nixos-hardware/common/cpu/intel/default.nix
Yegor Timoshenko b1304963c8
common/cpu/intel: add vaapi/vdpau drivers
I've tested this to work on MacBookAir4,1 and I'm going to deploy it
to MacBookAir6,2 today and Lenovo ThinkPad X230 in a week from now.
Also, cleaned up Lenovo ThinkPad X230 profile.
2017-12-27 07:31:18 +00:00

13 lines
233 B
Nix

{ lib, pkgs, ... }:
{
hardware.cpu.intel.updateMicrocode = lib.mkDefault true;
services.xserver.videoDrivers = [ "intel" ];
hardware.opengl.extraPackages = with pkgs; [
vaapiIntel
vaapiVdpau
libvdpau-va-gl
];
}