summaryrefslogtreecommitdiffstats
path: root/dell/xps/13-9380/default.nix
blob: d04f50449970a103375ab7f820195a3b21dd284a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ lib, pkgs, ... }:

{
  imports = [
    ../../../common/cpu/intel
    ../../../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" ];
}