summaryrefslogtreecommitdiffstats
path: root/dell/xps/13-9380/default.nix
blob: 162cc2618eb1ef2a87fd48343c9bb4fa2084b812 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ 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" ];

  # This will save you money and possibly your life!
  services.thermald.enable = true;
}