From 099d38a69ed75b6f549aa0daadc08c075d44a4d7 Mon Sep 17 00:00:00 2001 From: Andrew Kvalheim Date: Sat, 8 Feb 2025 09:00:22 -0800 Subject: [PATCH] lenovo/thinkpad/p16s/amd/gen2: init MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Notes: - Tested on a model 21K9CTR1WW configured with: - AMD Ryzen 7 PRO 7840U with Radeon 780M Graphics - 64 GB soldered RAM - WQUXGA (3840×2400) OLED display - Qualcomm NFA765 wireless network adapter - BIOS version R2FET38W (1.18) - The user guide is shared by: - ThinkPad P14s Gen 4 - ThinkPad P16s Gen 2 - ThinkPad T14 Gen 4 - ThinkPad T16 Gen 2 --- README.md | 1 + flake.nix | 1 + lenovo/thinkpad/p16s/amd/default.nix | 7 +++++++ lenovo/thinkpad/p16s/amd/gen2/default.nix | 5 +++++ lenovo/thinkpad/p16s/default.nix | 6 ++++++ 5 files changed, 20 insertions(+) create mode 100644 lenovo/thinkpad/p16s/amd/default.nix create mode 100644 lenovo/thinkpad/p16s/amd/gen2/default.nix create mode 100644 lenovo/thinkpad/p16s/default.nix diff --git a/README.md b/README.md index 412d80e6..26e7dcbe 100644 --- a/README.md +++ b/README.md @@ -243,6 +243,7 @@ See code for all available configurations. | [Lenovo ThinkPad P14s AMD Gen 4](lenovo/thinkpad/p14s/amd/gen4) | `` | | [Lenovo ThinkPad P14s Intel Gen 3](lenovo/thinkpad/p14s/intel/gen3) | `` | | [Lenovo ThinkPad P16s AMD Gen 1](lenovo/thinkpad/p16s/amd/gen1) | `` | +| [Lenovo ThinkPad P16s AMD Gen 2](lenovo/thinkpad/p16s/amd/gen2) | `` | | [Lenovo ThinkPad P1](lenovo/thinkpad/p1) | `` | | [Lenovo ThinkPad P50](lenovo/thinkpad/p50) | `` | | [Lenovo ThinkPad P51](lenovo/thinkpad/p51) | `` | diff --git a/flake.nix b/flake.nix index 8ef4e52e..b1b88f0b 100644 --- a/flake.nix +++ b/flake.nix @@ -184,6 +184,7 @@ lenovo-thinkpad-p14s-amd-gen4 = import ./lenovo/thinkpad/p14s/amd/gen4; lenovo-thinkpad-p14s-intel-gen3 = import ./lenovo/thinkpad/p14s/intel/gen3; lenovo-thinkpad-p16s-amd-gen1 = import ./lenovo/thinkpad/p16s/amd/gen1; + lenovo-thinkpad-p16s-amd-gen2 = import ./lenovo/thinkpad/p16s/amd/gen2; lenovo-thinkpad-p50 = import ./lenovo/thinkpad/p50; lenovo-thinkpad-p51 = import ./lenovo/thinkpad/p51; lenovo-thinkpad-p52 = import ./lenovo/thinkpad/p52; diff --git a/lenovo/thinkpad/p16s/amd/default.nix b/lenovo/thinkpad/p16s/amd/default.nix new file mode 100644 index 00000000..4dd23b34 --- /dev/null +++ b/lenovo/thinkpad/p16s/amd/default.nix @@ -0,0 +1,7 @@ +{ + imports = [ + ../. + ../../../../common/cpu/amd + ../../../../common/gpu/amd + ]; +} diff --git a/lenovo/thinkpad/p16s/amd/gen2/default.nix b/lenovo/thinkpad/p16s/amd/gen2/default.nix new file mode 100644 index 00000000..665d3d41 --- /dev/null +++ b/lenovo/thinkpad/p16s/amd/gen2/default.nix @@ -0,0 +1,5 @@ +{ + imports = [ + ../. + ]; +} diff --git a/lenovo/thinkpad/p16s/default.nix b/lenovo/thinkpad/p16s/default.nix new file mode 100644 index 00000000..53a9fdf5 --- /dev/null +++ b/lenovo/thinkpad/p16s/default.nix @@ -0,0 +1,6 @@ +{ + imports = [ + ../. + ../../../common/pc/laptop/ssd + ]; +}