summaryrefslogtreecommitdiffstats
path: root/dell/xps/13-9380/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'dell/xps/13-9380/default.nix')
-rw-r--r--dell/xps/13-9380/default.nix14
1 files changed, 14 insertions, 0 deletions
diff --git a/dell/xps/13-9380/default.nix b/dell/xps/13-9380/default.nix
new file mode 100644
index 0000000..47e6765
--- /dev/null
+++ b/dell/xps/13-9380/default.nix
@@ -0,0 +1,14 @@
+{ lib, pkgs, ... }:
+
+{
+ imports = [
+ ../../../common/pc/laptop
+ ../../../common/pc/laptop/acpi_call.nix
+ ];
+
+ # Force S3 sleep mode. See README.wiki for details.
+ boot.kernelParams = [ "mem_sleep_default=deep" ];
+
+ # touchpad goes over i2c
+ boot.blacklistedKernelModules = [ "psmouse" ];
+}