summaryrefslogtreecommitdiff
path: root/modules/desktop/hypridle.nix
blob: ff77aadc34c39d5209693d77a789b65b6f33c7fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
  config,
  lib,
  ...
}: let
  inherit (lib) mkIf;
  cfg = config.desktop;
in {
  config = mkIf cfg.hypridle {
    home-manager.users.${config.user} = {
      services.hypridle = {
        enable = true;

        settings = {
          general = {
            lock_cmd = "pidof ${config.default.lockScreen} || ${config.default.lockScreen}";
            before_sleep_cmd = "loginctl lock-session";
            after_sleep_cmd = "hyprctl dispatch dpms on";
            ignore_dbus_inhibit = false;
          };

          listener = [
            # dim screen
            {
              timeout = 150;
              on-timeout = "brightnessctl -s set 10";
              on-resume = "brightnessctl -r";
            }
            # lock
            {
              timeout = 300;
              on-timeout = "loginctl lock-session";
            }
            # turn off screen
            {
              timeout = 350;
              on-timeout = "hyprctl dispatch dpms off";
              on-resume = "hyprctl dispatch dpms on";
            }
          ];
        };
      };
    };
  };
}