File tree Expand file tree Collapse file tree 2 files changed +17
-0
lines changed Expand file tree Collapse file tree 2 files changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -133,6 +133,7 @@ See code for all available configurations.
133
133
| [ Dell XPS 13 9300] ( dell/xps/13-9300 ) | ` <nixos-hardware/dell/xps/13-9300> ` |
134
134
| [ Dell XPS 13 9310] ( dell/xps/13-9310 ) | ` <nixos-hardware/dell/xps/13-9310> ` |
135
135
| [ Dell XPS 13 9333] ( dell/xps/13-9333 ) | ` <nixos-hardware/dell/xps/13-9333> ` |
136
+ | [ Dell XPS 13 9340] ( dell/xps/13-9340 ) | ` <nixos-hardware/dell/xps/13-9340> ` |
136
137
| [ Dell XPS 13 9343] ( dell/xps/13-9343 ) | ` <nixos-hardware/dell/xps/13-9343> ` |
137
138
| [ Dell XPS 13 9350] ( dell/xps/13-9350 ) | ` <nixos-hardware/dell/xps/13-9350> ` |
138
139
| [ Dell XPS 13 9360] ( dell/xps/13-9360 ) | ` <nixos-hardware/dell/xps/13-9360> ` |
Original file line number Diff line number Diff line change
1
+ { pkgs , lib , ... } : let inherit ( lib ) mkDefault ; in {
2
+ imports = [
3
+ ../../../common/cpu/intel
4
+ ../../../common/pc/laptop
5
+ ../../../common/pc/ssd
6
+ ../../../common/gpu/intel/meteor-lake
7
+ ] ;
8
+
9
+ # Allows for updating firmware via `fwupdmgr`.
10
+ services . fwupd . enable = mkDefault true ;
11
+
12
+ # This will save you money and possibly your life!
13
+ services . thermald . enable = mkDefault true ;
14
+
15
+ hardware . intelgpu . deviceID = "7d55" ;
16
+ }
You can’t perform that action at this time.
0 commit comments