File tree 3 files changed +13
-0
lines changed
lenovo/thinkpad/p14s/amd/gen4
3 files changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -195,6 +195,7 @@ See code for all available configurations.
195
195
| [ Lenovo ThinkPad P14s AMD Gen 1] ( lenovo/thinkpad/p14s/amd/gen1 ) | ` <nixos-hardware/lenovo/thinkpad/p14s/amd/gen1> ` |
196
196
| [ Lenovo ThinkPad P14s AMD Gen 2] ( lenovo/thinkpad/p14s/amd/gen2 ) | ` <nixos-hardware/lenovo/thinkpad/p14s/amd/gen2> ` |
197
197
| [ Lenovo ThinkPad P14s AMD Gen 3] ( lenovo/thinkpad/p14s/amd/gen3 ) | ` <nixos-hardware/lenovo/thinkpad/p14s/amd/gen3> ` |
198
+ | [ Lenovo ThinkPad P14s AMD Gen 4] ( lenovo/thinkpad/p14s/amd/gen4 ) | ` <nixos-hardware/lenovo/thinkpad/p14s/amd/gen4> ` |
198
199
| [ Lenovo ThinkPad P16s AMD Gen 1] ( lenovo/thinkpad/p16s/amd/gen1 ) | ` <nixos-hardware/lenovo/thinkpad/p16s/amd/gen1> ` |
199
200
| [ Lenovo ThinkPad P1] ( lenovo/thinkpad/p1 ) | ` <nixos-hardware/lenovo/thinkpad/p1> ` |
200
201
| [ Lenovo ThinkPad P50] ( lenovo/thinkpad/p50 ) | ` <nixos-hardware/lenovo/thinkpad/p50> ` |
Original file line number Diff line number Diff line change 131
131
lenovo-thinkpad-p14s-amd-gen1 = import ./lenovo/thinkpad/p14s/amd/gen1 ;
132
132
lenovo-thinkpad-p14s-amd-gen2 = import ./lenovo/thinkpad/p14s/amd/gen2 ;
133
133
lenovo-thinkpad-p14s-amd-gen3 = import ./lenovo/thinkpad/p14s/amd/gen3 ;
134
+ lenovo-thinkpad-p14s-amd-gen4 = import ./lenovo/thinkpad/p14s/amd/gen4 ;
134
135
lenovo-thinkpad-p16s-amd-gen1 = import ./lenovo/thinkpad/p16s/amd/gen1 ;
135
136
lenovo-thinkpad-p50 = import ./lenovo/thinkpad/p50 ;
136
137
lenovo-thinkpad-p51 = import ./lenovo/thinkpad/p51 ;
Original file line number Diff line number Diff line change
1
+ { lib , pkgs , config , ... } :
2
+ {
3
+ imports = [
4
+ ../.
5
+ ../../../../../common/cpu/amd/pstate.nix
6
+ ] ;
7
+
8
+ # For the Qualcomm NFA765 [17cb:1103] wireless network controller
9
+ # See https://bugzilla.redhat.com/show_bug.cgi?id=2047878
10
+ boot . kernelPackages = lib . mkIf ( lib . versionOlder pkgs . linux . version "5.16" ) pkgs . linuxPackages_latest ;
11
+ }
You can’t perform that action at this time.
0 commit comments