mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-01 00:29:40 +01:00
11 lines
173 B
Nix
11 lines
173 B
Nix
{
|
|
imports = [
|
|
../.
|
|
../../../common/cpu/intel
|
|
];
|
|
|
|
boot.kernelParams = [
|
|
# Disable "Panel Self Refresh". Fix random freezes.
|
|
"i915.enable_psr=0"
|
|
];
|
|
}
|