Bug: Accidentally inverted Lenovo 16ARHA7 kernel version check
Some checks failed
Test / tests (push) Failing after 14s

This commit is contained in:
Aires 2024-05-29 12:25:41 -04:00
parent 80736f76de
commit 927057e56e

View file

@ -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;