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

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

  laptop.onLowBattery.enable = true;

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