File tree Expand file tree Collapse file tree 5 files changed +32
-21
lines changed
lenovo/thinkpad/t14/intel Expand file tree Collapse file tree 5 files changed +32
-21
lines changed Original file line number Diff line number Diff line change @@ -288,6 +288,7 @@ See code for all available configurations.
288
288
| [ Lenovo ThinkPad T14 AMD Gen 4] ( lenovo/thinkpad/t14/amd/gen4 ) | ` <nixos-hardware/lenovo/thinkpad/t14/amd/gen4> ` | ` lenovo-thinkpad-t14-amd-gen4 ` |
289
289
| [ Lenovo ThinkPad T14 AMD Gen 5] ( lenovo/thinkpad/t14/amd/gen5 ) | ` <nixos-hardware/lenovo/thinkpad/t14/amd/gen5> ` | ` lenovo-thinkpad-t14-amd-gen5 ` |
290
290
| [ Lenovo ThinkPad T14] ( lenovo/thinkpad/t14 ) | ` <nixos-hardware/lenovo/thinkpad/t14> ` | ` lenovo-thinkpad-t14 ` |
291
+ | [ Lenovo ThinkPad T14 Intel Gen 6] ( lenovo/thinkpad/t14/intel/gen6 ) | ` <nixos-hardware/lenovo/thinkpad/t14/intel/gen6> ` | ` lenovo-thinkpad-t14-intel-gen6 ` |
291
292
| [ Lenovo ThinkPad T14s AMD Gen 1] ( lenovo/thinkpad/t14s/amd/gen1 ) | ` <nixos-hardware/lenovo/thinkpad/t14s/amd/gen1> ` | ` lenovo-thinkpad-t14s-amd-gen1 ` |
292
293
| [ Lenovo ThinkPad T14s AMD Gen 4] ( lenovo/thinkpad/t14s/amd/gen4 ) | ` <nixos-hardware/lenovo/thinkpad/t14s/amd/gen4> ` | ` lenovo-thinkpad-t14s-amd-gen4 ` |
293
294
| [ Lenovo ThinkPad T14s] ( lenovo/thinkpad/t14s ) | ` <nixos-hardware/lenovo/thinkpad/t14s> ` | ` lenovo-thinkpad-t14s ` |
Original file line number Diff line number Diff line change 223
223
lenovo-thinkpad-t14-amd-gen3 = import ./lenovo/thinkpad/t14/amd/gen3 ;
224
224
lenovo-thinkpad-t14-amd-gen4 = import ./lenovo/thinkpad/t14/amd/gen4 ;
225
225
lenovo-thinkpad-t14-amd-gen5 = import ./lenovo/thinkpad/t14/amd/gen5 ;
226
+ lenovo-thinkpad-t14-intel-gen6 = import ./lenovo/thinkpad/t14/intel/gen6 ;
226
227
lenovo-thinkpad-t14s = import ./lenovo/thinkpad/t14s ;
227
228
lenovo-thinkpad-t14s-amd-gen1 = import ./lenovo/thinkpad/t14s/amd/gen1 ;
228
229
lenovo-thinkpad-t14s-amd-gen4 = import ./lenovo/thinkpad/t14s/amd/gen4 ;
Original file line number Diff line number Diff line change
1
+ { lib , pkgs , ... } :
2
+
3
+ {
4
+ imports = [
5
+ ../.
6
+ ../../../../common/cpu/intel
7
+ ../../../../common/gpu/intel
8
+ ] ;
9
+ }
Original file line number Diff line number Diff line change
1
+ {
2
+ lib ,
3
+ pkgs ,
4
+ config ,
5
+ ...
6
+ } :
7
+
8
+ {
9
+ imports = [
10
+ ../../.
11
+ ../../../../../common/cpu/intel/lunar-lake
12
+ ] ;
13
+
14
+ # T14 Gen 6 uses Intel Core Ultra processors (Lunar Lake architecture)
15
+ # with integrated Intel Arc graphics
16
+ # The lunar-lake module already includes appropriate GPU support
17
+
18
+ # Ensure modern kernel for full Lunar Lake support
19
+ boot . kernelPackages = lib . mkIf ( lib . versionOlder pkgs . linux . version "6.8" ) pkgs . linuxPackages_latest ;
20
+ }
You can’t perform that action at this time.
0 commit comments