14 lines
292 B
Nix
14 lines
292 B
Nix
{
|
|
pkgs, ...
|
|
}:
|
|
|
|
{
|
|
hardware = {
|
|
cpu.intel.updateMicrocode = true;
|
|
# NOTE: Assuming each Intel CPU has integrated graphics
|
|
opengl.extraPackages = with pkgs; [ vaapiIntel intel-media-driver ];
|
|
};
|
|
# TODO: Remove?
|
|
services.xserver.videoDrivers = [ "modesetting" "fbdev" ];
|
|
}
|