File tree Expand file tree Collapse file tree 3 files changed +15
-0
lines changed Expand file tree Collapse file tree 3 files changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -131,6 +131,7 @@ See code for all available configurations.
131
131
| [ Lenovo ThinkPad X1 (6th Gen)] [ ] | ` <nixos-hardware/lenovo/thinkpad/x1/6th-gen> ` |
132
132
| [ Lenovo ThinkPad X1 (7th Gen)] [ ] | ` <nixos-hardware/lenovo/thinkpad/x1/7th-gen> ` |
133
133
| Lenovo ThinkPad X1 Extreme Gen 2 | ` <nixos-hardware/lenovo/thinkpad/x1-extreme/gen2> ` |
134
+ | [ Lenovo ThinkPad X13] [ ] | ` <nixos-hardware/lenovo/thinkpad/x13 ` |
134
135
| [ Microsoft Surface Range] [ ] | ` <nixos-hardware/microsoft/surface> ` |
135
136
| [ Microsoft Surface Pro 3] [ ] | ` <nixos-hardware/microsoft/surface-pro/3> ` |
136
137
| [ MSI GS60 2QE] [ ] | ` <nixos-hardware/msi/gs60> ` |
@@ -166,6 +167,7 @@ See code for all available configurations.
166
167
[ Inverse Path USB armory ] : inversepath/usbarmory
167
168
[ Lenovo ThinkPad X1 (6th Gen) ] : lenovo/thinkpad/x1/6th-gen
168
169
[ Lenovo ThinkPad X1 (7th Gen) ] : lenovo/thinkpad/x1/7th-gen
170
+ [ Lenovo ThinkPad X13 ] : lenovo/thinkpad/x13
169
171
[ Lenovo ThinkPad X13 Yoga ] : lenovo/thinkpad/x13-yoga
170
172
[ Lenovo ThinkPad X260 ] : lenovo/thinkpad/x260
171
173
[ Microsoft Surface Pro 3 ] : microsoft/surface-pro/3
Original file line number Diff line number Diff line change 67
67
lenovo-thinkpad-x1-7th-gen = import ./lenovo/thinkpad/x1/7th-gen ;
68
68
lenovo-thinkpad-x1-extreme = import ./lenovo/thinkpad/x1-extreme ;
69
69
lenovo-thinkpad-x1-extreme-gen2 = import ./lenovo/thinkpad/x1-extreme/gen2 ;
70
+ lenovo-thinkpad-x13 = import ./lenovo/thinkpad/x13 ;
70
71
lenovo-thinkpad-x13-yoga = import ./lenovo/thinkpad/x13-yoga ;
71
72
microsoft-surface = import ./microsoft/surface ;
72
73
microsoft-surface-pro-3 = import ./microsoft/surface-pro/3 ;
Original file line number Diff line number Diff line change
1
+ { config , lib , ... } : {
2
+ # Reference to hardware: https://certification.ubuntu.com/hardware/202004-27844
3
+ imports = [
4
+ ../.
5
+ ../../../common/cpu/intel
6
+ ../../../common/pc/laptop/acpi_call.nix
7
+ ../../../common/pc/laptop/ssd
8
+ ] ;
9
+
10
+ # Somehow psmouse does not load automatically on boot for me
11
+ boot . kernelModules = [ "psmouse" ] ;
12
+ }
You can’t perform that action at this time.
0 commit comments