summaryrefslogtreecommitdiffstats
path: root/dell
diff options
context:
space:
mode:
Diffstat (limited to 'dell')
-rw-r--r--dell/xps/13-7390/README.wiki12
-rw-r--r--dell/xps/13-7390/default.nix11
2 files changed, 23 insertions, 0 deletions
diff --git a/dell/xps/13-7390/README.wiki b/dell/xps/13-7390/README.wiki
new file mode 100644
index 0000000..c5eac59
--- /dev/null
+++ b/dell/xps/13-7390/README.wiki
@@ -0,0 +1,12 @@
+= Dell XPS 13 7390 =
+
+== Firmware upgrades ==
+
+Note that this device is supported by [https://fwupd.org/ fwupd].
+To perform firmware upgrades just activate the service
+
+<code>
+services.fwupd.enable = true;
+</code>
+
+Then use <code>fwupdmgr</code> to perform updates.
diff --git a/dell/xps/13-7390/default.nix b/dell/xps/13-7390/default.nix
new file mode 100644
index 0000000..727ea5c
--- /dev/null
+++ b/dell/xps/13-7390/default.nix
@@ -0,0 +1,11 @@
+{ lib, pkgs, ... }:
+
+{
+ imports = [
+ ../../../common/cpu/intel
+ ../../../common/pc/laptop
+ ../../../common/pc/laptop/ssd
+ ];
+
+ services.thermald.enable = true;
+}