2024-09-09 14:49:52 +02:00
|
|
|
{ lib, pkgs, ... }:
|
2022-12-24 00:38:10 +01:00
|
|
|
|
|
|
|
{
|
2022-12-28 21:10:35 +01:00
|
|
|
imports = [
|
|
|
|
../../../thinkpad/yoga.nix
|
|
|
|
../../../../common/gpu/amd/default.nix
|
2022-12-24 00:38:10 +01:00
|
|
|
];
|
2022-12-28 21:10:35 +01:00
|
|
|
|
|
|
|
boot.initrd.kernelModules = [ "ideapad_laptop" ];
|
2022-12-24 00:38:10 +01:00
|
|
|
|
2022-12-29 14:52:15 +01:00
|
|
|
# latest kernel needed to make wifi work
|
2024-09-09 14:49:52 +02:00
|
|
|
boot.kernelPackages = lib.mkIf (lib.versionOlder pkgs.linux.version "5.16") pkgs.linuxPackages_latest;
|
2022-12-24 00:38:10 +01:00
|
|
|
|
2022-12-28 21:10:35 +01:00
|
|
|
# energy savings
|
2024-09-09 14:49:52 +02:00
|
|
|
boot.kernelParams = [
|
|
|
|
"mem_sleep_default=deep"
|
|
|
|
"pcie_aspm.policy=powersupersave"
|
|
|
|
];
|
2024-06-28 07:30:54 +02:00
|
|
|
|
2024-09-03 17:29:13 +02:00
|
|
|
# Fix for unstable wifi connection on Lenovo laptops
|
|
|
|
boot.extraModprobeConfig = ''
|
|
|
|
options rtw89_pci disable_clkreq=y disable_aspm_l1=y disable_aspm_l1ss=y
|
|
|
|
'';
|
|
|
|
|
2024-09-09 14:49:52 +02:00
|
|
|
hardware.bluetooth.enable = lib.mkDefault true;
|
2022-12-24 00:38:10 +01:00
|
|
|
}
|