all repos — archive/nixos-configuration @ 8b32d975e34295dd91d5e60a5485d6a3d02b1f3f

Superseded by nixfiles

modules/hardware/intel-gpu.nix (view raw)

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