summaryrefslogtreecommitdiffstats
path: root/dell/e7240
diff options
context:
space:
mode:
authorAshley Gillman <gillmanash@gmail.com>2018-07-15 22:28:25 +0100
committerJörg Thalheim <joerg@thalheim.io>2019-09-27 10:22:47 +0100
commit26bbc980b9b7c6b0d38b51fec5b41e977731fb5c (patch)
treeb9121ee235ca6763df29522ecc085acc07b6234b /dell/e7240
parent043562906168ee6966b6409c89a2b219af1e9752 (diff)
Add Dell E7240 Profile
(Current XPS 15 works well)
Diffstat (limited to 'dell/e7240')
-rw-r--r--dell/e7240/README.md8
-rw-r--r--dell/e7240/default.nix8
2 files changed, 16 insertions, 0 deletions
diff --git a/dell/e7240/README.md b/dell/e7240/README.md
new file mode 100644
index 0000000..b712f4d
--- /dev/null
+++ b/dell/e7240/README.md
@@ -0,0 +1,8 @@
+On some kernel versions user ashgillman has experiences suspend issues
+(see https://bugzilla.redhat.com/show_bug.cgi?id=1597481).
+
+Try:
+
+```nix
+boot.kernelPackages = pkgs.linuxPackages_4_14;
+```
diff --git a/dell/e7240/default.nix b/dell/e7240/default.nix
new file mode 100644
index 0000000..3334a74
--- /dev/null
+++ b/dell/e7240/default.nix
@@ -0,0 +1,8 @@
+{ lib, pkgs, ... }:
+
+{
+ imports = [
+ ../../common/cpu/intel
+ ../../common/pc/laptop
+ ];
+}