b1304963c8
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.
13 lines
233 B
Nix
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
|
|
];
|
|
}
|