aboutsummaryrefslogtreecommitdiffstats
path: root/users/sils/swayidle/default.nix
blob: 20eabad99bf3a150ad79f7f1f390a76e454a6b6a (plain) (blame)
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
{pkgs, ...}: {
  services.swayidle = {
    enable = true;
    events = [
      # TODO: Find a way to close keepassxc-database on lock
      #{
      #  event = "lock";
      #  command = "";
      #}
      {
        event = "before-sleep";
        command = "${pkgs.swaylock}/bin/swaylock -f";
      }
    ];
    timeouts = [
      {
        timeout = 120;
        command = "${pkgs.swaylock}/bin/swaylock -f";
      }
      {
        timeout = 140;
        command = "${pkgs.hyprland}/bin/hyprctl dispatch dpms off";
        resumeCommand = "${pkgs.hyprland}/bin/hyprctl dispatch dpms on";
      }
    ];
    systemdTarget = "hyprland-session.target";
  };
}