summaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorYegor Timoshenko <yegortimoshenko@gmail.com>2017-12-27 07:28:30 +0000
committerYegor Timoshenko <yegortimoshenko@gmail.com>2017-12-27 07:31:18 +0000
commitb1304963c8c296ee20918a3604f2d92227b1a868 (patch)
tree40f99555096fef0fe26a13367f8d24558450fc67 /common
parented3ba5cc2da6815650c2d32a6acad94477e7ad89 (diff)
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.
Diffstat (limited to 'common')
-rw-r--r--common/cpu/intel/default.nix10
1 files changed, 9 insertions, 1 deletions
diff --git a/common/cpu/intel/default.nix b/common/cpu/intel/default.nix
index e3ce919..84997f1 100644
--- a/common/cpu/intel/default.nix
+++ b/common/cpu/intel/default.nix
@@ -1,4 +1,12 @@
+{ lib, pkgs, ... }:
+
{
- hardware.cpu.intel.updateMicrocode = true;
+ hardware.cpu.intel.updateMicrocode = lib.mkDefault true;
services.xserver.videoDrivers = [ "intel" ];
+
+ hardware.opengl.extraPackages = with pkgs; [
+ vaapiIntel
+ vaapiVdpau
+ libvdpau-va-gl
+ ];
}