summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Berlind <persson33@gmail.com>2019-10-30 20:15:22 +0100
committerJörg Thalheim <Mic92@users.noreply.github.com>2019-10-30 19:15:22 +0000
commit5316e919c8e01dcff9c64c8aa3f8947e9d07680d (patch)
tree344872e43b0cb4d7106fa93c01641a0df00bb794
parentc0182a06982f82a47356c91d78d80d2af29bd7f1 (diff)
Add Dell XPS-7390 Profile (#128)
-rw-r--r--README.md2
-rw-r--r--dell/xps/13-7390/README.wiki12
-rw-r--r--dell/xps/13-7390/default.nix11
3 files changed, 25 insertions, 0 deletions
diff --git a/README.md b/README.md
index 4cfbf53..648f129 100644
--- a/README.md
+++ b/README.md
@@ -34,6 +34,7 @@ See code for all available configurations.
| Apple MacBook Pro 12,1 | `<nixos-hardware/apple/macbook-pro/12-1>` |
| BeagleBoard PocketBeagle | `<nixos-hardware/beagleboard/pocketbeagle>` |
| [Dell XPS E7240][] | `<nixos-hardware/dell/e7240>` |
+| [Dell XPS 13 7390][] | `<nixos-hardware/dell/xps/13-7390>` |
| [Dell XPS 13 9360][] | `<nixos-hardware/dell/xps/13-9360>` |
| [Dell XPS 13 9370][] | `<nixos-hardware/dell/xps/13-9370>` |
| [Dell XPS 13 9380][] | `<nixos-hardware/dell/xps/13-9380>` |
@@ -70,6 +71,7 @@ See code for all available configurations.
[Acer Aspire 4810T]: acer/aspire/4810t
[Apple MacBook Pro 10,1]: apple/macbook-pro/10-1
[Dell XPS E7240]: dell/e7240
+[Dell XPS 13 7390]: dell/xps/13-7390
[Dell XPS 13 9360]: dell/xps/13-9360
[Dell XPS 13 9370]: dell/xps/13-9370
[Dell XPS 13 9380]: dell/xps/13-9380
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;
+}