about summary refs log tree commit diff
path: root/users/grfn/system/system/modules/laptop.nix
blob: 05c5333e513f516d7ed4cd7c7b71200fabb882f5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ config, lib, pkgs, ... }:

{
  imports = [
    ./reusable/battery.nix
  ];

  laptop.onLowBattery.enable = true;

  services.logind.extraConfig = ''
    HandlePowerKey=hibernate
  '';

  services.tlp.enable = true;
}