File tree Expand file tree Collapse file tree 3 files changed +14
-0
lines changed
lenovo/thinkpad/p14s/amd/gen5 Expand file tree Collapse file tree 3 files changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -256,6 +256,7 @@ See code for all available configurations.
256
256
| [ Lenovo ThinkPad P14s AMD Gen 2] ( lenovo/thinkpad/p14s/amd/gen2 ) | ` <nixos-hardware/lenovo/thinkpad/p14s/amd/gen2> ` |
257
257
| [ Lenovo ThinkPad P14s AMD Gen 3] ( lenovo/thinkpad/p14s/amd/gen3 ) | ` <nixos-hardware/lenovo/thinkpad/p14s/amd/gen3> ` |
258
258
| [ Lenovo ThinkPad P14s AMD Gen 4] ( lenovo/thinkpad/p14s/amd/gen4 ) | ` <nixos-hardware/lenovo/thinkpad/p14s/amd/gen4> ` |
259
+ | [ Lenovo ThinkPad P14s AMD Gen 5] ( lenovo/thinkpad/p14s/amd/gen5 ) | ` <nixos-hardware/lenovo/thinkpad/p14s/amd/gen5> ` |
259
260
| [ Lenovo ThinkPad P14s Intel Gen 3] ( lenovo/thinkpad/p14s/intel/gen3 ) | ` <nixos-hardware/lenovo/thinkpad/p14s/intel/gen3> ` |
260
261
| [ Lenovo ThinkPad P14s Intel Gen 5] ( lenovo/thinkpad/p14s/intel/gen5 ) | ` <nixos-hardware/lenovo/thinkpad/p14s/intel/gen5> ` |
261
262
| [ Lenovo ThinkPad P16s AMD Gen 1] ( lenovo/thinkpad/p16s/amd/gen1 ) | ` <nixos-hardware/lenovo/thinkpad/p16s/amd/gen1> ` |
Original file line number Diff line number Diff line change 200
200
lenovo-thinkpad-p14s-amd-gen2 = import ./lenovo/thinkpad/p14s/amd/gen2 ;
201
201
lenovo-thinkpad-p14s-amd-gen3 = import ./lenovo/thinkpad/p14s/amd/gen3 ;
202
202
lenovo-thinkpad-p14s-amd-gen4 = import ./lenovo/thinkpad/p14s/amd/gen4 ;
203
+ lenovo-thinkpad-p14s-amd-gen5 = import ./lenovo/thinkpad/p14s/amd/gen5 ;
203
204
lenovo-thinkpad-p14s-intel-gen3 = import ./lenovo/thinkpad/p14s/intel/gen3 ;
204
205
lenovo-thinkpad-p14s-intel-gen5 = import ./lenovo/thinkpad/p14s/intel/gen5 ;
205
206
lenovo-thinkpad-p16s-amd-gen1 = import ./lenovo/thinkpad/p16s/amd/gen1 ;
Original file line number Diff line number Diff line change
1
+ { lib , pkgs , ... } :
2
+
3
+ {
4
+ imports = [
5
+ ../.
6
+ ../../../../../common/cpu/amd/pstate.nix
7
+ ] ;
8
+
9
+ # For the Qualcomm NFA-725A (Device 1103) wireless network controller
10
+ # See https://bugzilla.redhat.com/show_bug.cgi?id=2047878
11
+ boot . kernelPackages = lib . mkIf ( lib . versionOlder pkgs . linux . version "5.16" ) pkgs . linuxPackages_latest ;
12
+ }
You can’t perform that action at this time.
0 commit comments