1
0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-06-26 14:38:31 +02:00

Add kernel version check for Lenovo 16ARHA7 speaker fix

This commit is contained in:
Andre 2024-05-23 20:40:09 -04:00 committed by mergify[bot]
parent 33026a05f4
commit 816528f00e

View File

@ -1,4 +1,4 @@
{ config, pkgs, ... }: { config, pkgs, lib, ... }:
let let
lenovo-speaker-fix = pkgs.callPackage ./audio/lenovo-16ARHA7_speaker-fix.nix { lenovo-speaker-fix = pkgs.callPackage ./audio/lenovo-16ARHA7_speaker-fix.nix {
@ -14,7 +14,8 @@ in
../../../common/pc/laptop/ssd ../../../common/pc/laptop/ssd
]; ];
boot.extraModulePackages = [ lenovo-speaker-fix ]; # 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 ];
# √(2560² + 1600²) px / 16 in ≃ 189 dpi # √(2560² + 1600²) px / 16 in ≃ 189 dpi
services.xserver.dpi = 189; services.xserver.dpi = 189;