nixos-hardware/lenovo/thinkpad/t14s/amd/gen1/default.nix

13 lines
304 B
Nix
Raw Permalink Normal View History

2022-12-31 11:52:38 +01:00
{ lib, pkgs, ... }:
{
imports = [
../.
];
2022-06-28 08:28:04 +02:00
# For mainline support of rtw89 wireless networking
boot.kernelPackages = lib.mkIf (lib.versionOlder pkgs.linux.version "5.16") pkgs.linuxPackages_latest;
2022-09-13 13:16:46 +02:00
# Enable energy savings during sleep
2023-07-29 18:38:30 +02:00
boot.kernelParams = [ "mem_sleep_default=deep" ];
}