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

{
  # https://wiki.gentoo.org/wiki/Intel#Feature_support
  services.xserver = {
    useGlamor = true;
    deviceSection = ''
      Option      "DRI"            "3"
    '';
    videoDrivers = [ "intel" ];
  };

  boot.kernelParams = [
    "i915.enable_guc=2"
    "i915.fastboot=1"
  ];
}