aboutsummaryrefslogtreecommitdiff
path: root/nixos/nixosModules/powerbutton.nix
blob: fdf1cebeba25f429df09ddf3729e831c80752a4e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ pkgs, config, lib, ... }:

{
  options = {
    pbutton.disable = lib.mkEnableOption "enable pbutton";
  };
  config = lib.mkIf config.pbutton.disable {
    services.logind.extraConfig = ''
      HandlePowerKey=ignore
      HandleLidSwitch=suspend
      HandleLidSwitchExternalPower=suspend
    '';
  };
}