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











                                    

                             
 
{ config, lib, pkgs, ... }:

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

  laptop.onLowBattery.enable = true;

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

  services.tlp.enable = true;
}