all repos — nixfiles @ 675df06a2ee596141170606c2689f7cefa66578a

System and user configuration, managed by nix and home-manager

system/settings/hardware/intel-gpu.nix (view raw)

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"
  ];
}