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

{

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