mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-01 16:49:40 +01:00
11 lines
185 B
Nix
11 lines
185 B
Nix
{
|
|
imports = [ ../. ];
|
|
|
|
boot.kernelParams = [
|
|
"i915.enable_guc=2"
|
|
"i915.enable_fbc=1"
|
|
"i915.enable_psr=2"
|
|
];
|
|
|
|
hardware.intelgpu.vaapiDriver = "intel-media-driver";
|
|
}
|