summary refs log tree commit diff stats
path: root/system/settings/hardware/intel-gpu.nix
blob: 81fd765e2afd8c9e89afb83bbf4419cb2a393860 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ config, pkgs, ... }:

{ hardware.opengl.extraPackages = with pkgs; [
    vaapiIntel
    vaapiVdpau
    libvdpau-va-gl
  ];

  boot.earlyVconsoleSetup = true;
  boot.initrd.kernelModules = [
    "i915"
  ];
}