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

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

  services.xserver.videoDrivers = [ "intel" "modesetting" ];

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