mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-01 00:29:40 +01:00
20 lines
512 B
Nix
20 lines
512 B
Nix
{ lib, pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
../../../thinkpad/yoga.nix
|
|
../../../../common/gpu/amd/default.nix
|
|
];
|
|
|
|
boot.initrd.kernelModules = [ "ideapad_laptop" ];
|
|
hardware.opengl.extraPackages = with pkgs; [
|
|
vaapiVdpau
|
|
libvdpau-va-gl
|
|
];
|
|
|
|
# latest kernel needed to make wifi work
|
|
boot.kernelPackages = lib.mkIf (lib.versionOlder pkgs.linux.version "5.16") pkgs.linuxPackages_latest;
|
|
|
|
# energy savings
|
|
boot.kernelParams = ["mem_sleep_default=deep" "pcie_aspm.policy=powersupersave"];
|
|
}
|