2024-05-24 02:40:09 +02:00
|
|
|
{ config, pkgs, lib, ... }:
|
2024-04-10 10:52:19 +02:00
|
|
|
|
|
|
|
let
|
|
|
|
lenovo-speaker-fix = pkgs.callPackage ./audio/lenovo-16ARHA7_speaker-fix.nix {
|
|
|
|
# Make sure the module targets the same kernel as your system is using.
|
|
|
|
inherit (config.boot.kernelPackages) kernel;
|
|
|
|
};
|
|
|
|
in
|
|
|
|
{
|
|
|
|
imports = [
|
|
|
|
../../../common/cpu/amd/pstate.nix
|
|
|
|
../../../common/gpu/amd
|
|
|
|
../../../common/pc/laptop
|
|
|
|
../../../common/pc/laptop/ssd
|
|
|
|
];
|
|
|
|
|
2024-07-31 02:08:35 +02:00
|
|
|
# Kernel 6.10 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.10") [ lenovo-speaker-fix ];
|
2024-04-10 10:52:19 +02:00
|
|
|
|
|
|
|
# √(2560² + 1600²) px / 16 in ≃ 189 dpi
|
|
|
|
services.xserver.dpi = 189;
|
2024-05-03 15:28:12 +02:00
|
|
|
|
|
|
|
# Enable fingerprint reader
|
|
|
|
services.fprintd = {
|
|
|
|
enable = true;
|
|
|
|
package = pkgs.fprintd-tod;
|
|
|
|
tod = {
|
|
|
|
enable = true;
|
|
|
|
driver = pkgs.libfprint-2-tod1-elan;
|
|
|
|
};
|
|
|
|
};
|
2024-04-10 10:52:19 +02:00
|
|
|
}
|