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

{ hardware.opengl.extraPackages = with pkgs; [
    vaapiIntel
  ];

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