Bug: Accidentally inverted Lenovo 16ARHA7 kernel version check
Some checks failed
Test / tests (push) Failing after 14s
Some checks failed
Test / tests (push) Failing after 14s
This commit is contained in:
parent
80736f76de
commit
927057e56e
|
@ -15,7 +15,7 @@ in
|
|||
];
|
||||
|
||||
# Kernel 6.9 includes the speaker fix, so only install this on systems with older kernels.
|
||||
boot.extraModulePackages = lib.mkIf (!(lib.versionOlder config.boot.kernelPackages.kernel.version "6.9")) [ lenovo-speaker-fix ];
|
||||
boot.extraModulePackages = lib.mkIf lib.versionOlder config.boot.kernelPackages.kernel.version "6.9" [ lenovo-speaker-fix ];
|
||||
|
||||
# √(2560² + 1600²) px / 16 in ≃ 189 dpi
|
||||
services.xserver.dpi = 189;
|
||||
|
|
Loading…
Reference in a new issue