summaryrefslogtreecommitdiff
path: root/modules/desktops/hyprland/idle.nix
blob: d09e665dc1bbce860652867b8d6b7cd2d98dd1ce (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
{config, ...}: {
  home-manager.users.${config.user} = {
    services.hypridle = {
      enable = config.desktops.hyprland;
      systemdTarget = "hyprland-session.target";

      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";
          }
        ];
      };
    };
  };
}