mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-01 16:49:40 +01:00
16 lines
354 B
Markdown
16 lines
354 B
Markdown
|
# Dell Precision 5490
|
||
|
|
||
|
The internal monitor needs Linux Kernel >= 6.7 so enabling hybrid graphics does not work out of the box in 24.05. Setting
|
||
|
|
||
|
```
|
||
|
boot.kernelParams = [ "i915.force_probe=7d55" ];
|
||
|
```
|
||
|
|
||
|
helped but introduced some screen tearing.
|
||
|
|
||
|
Setting
|
||
|
```
|
||
|
boot.kernelPackages = pkgs.linuxPackages_latest;
|
||
|
```
|
||
|
in nixos-stable worked with no problems.
|