File tree 3 files changed +14
-0
lines changed
lenovo/thinkpad/t14/amd/gen4
3 files changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -205,6 +205,7 @@ See code for all available configurations.
205
205
| [ Lenovo ThinkPad T14 AMD Gen 1] ( lenovo/thinkpad/t14/amd/gen1 ) | ` <nixos-hardware/lenovo/thinkpad/t14/amd/gen1> ` |
206
206
| [ Lenovo ThinkPad T14 AMD Gen 2] ( lenovo/thinkpad/t14/amd/gen2 ) | ` <nixos-hardware/lenovo/thinkpad/t14/amd/gen2> ` |
207
207
| [ Lenovo ThinkPad T14 AMD Gen 3] ( lenovo/thinkpad/t14/amd/gen3 ) | ` <nixos-hardware/lenovo/thinkpad/t14/amd/gen3> ` |
208
+ | [ Lenovo ThinkPad T14 AMD Gen 4] ( lenovo/thinkpad/t14/amd/gen4 ) | ` <nixos-hardware/lenovo/thinkpad/t14/amd/gen4> ` |
208
209
| [ Lenovo ThinkPad T14] ( lenovo/thinkpad/t14 ) | ` <nixos-hardware/lenovo/thinkpad/t14> ` |
209
210
| [ Lenovo ThinkPad T14s AMD Gen 1] ( lenovo/thinkpad/t14s/amd/gen1 ) | ` <nixos-hardware/lenovo/thinkpad/t14s/amd/gen1> ` |
210
211
| [ Lenovo ThinkPad T14s] ( lenovo/thinkpad/t14s ) | ` <nixos-hardware/lenovo/thinkpad/t14s> ` |
Original file line number Diff line number Diff line change 141
141
lenovo-thinkpad-t14-amd-gen1 = import ./lenovo/thinkpad/t14/amd/gen1 ;
142
142
lenovo-thinkpad-t14-amd-gen2 = import ./lenovo/thinkpad/t14/amd/gen2 ;
143
143
lenovo-thinkpad-t14-amd-gen3 = import ./lenovo/thinkpad/t14/amd/gen3 ;
144
+ lenovo-thinkpad-t14-amd-gen4 = import ./lenovo/thinkpad/t14/amd/gen4 ;
144
145
lenovo-thinkpad-t14s = import ./lenovo/thinkpad/t14s ;
145
146
lenovo-thinkpad-t14s-amd-gen1 = import ./lenovo/thinkpad/t14s/amd/gen1 ;
146
147
lenovo-thinkpad-t410 = import ./lenovo/thinkpad/t410 ;
Original file line number Diff line number Diff line change
1
+ { lib , pkgs , config , ... } :
2
+
3
+ {
4
+ imports = [
5
+ ../.
6
+ ../../../../../common/cpu/amd/pstate.nix
7
+ ] ;
8
+
9
+ # For the Qualcomm NFA765 [17cb: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