summary refs log blame commit diff stats
path: root/hm/swayidle/default.nix
blob: 32befa24ecfd010a4642cf13bcde4f8bd2810e32 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11









                                                            



                                                     
                      
                                                     
       



                                                                         
      
                                              
    
{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 = 160;
        command = "${pkgs.swaylock}/bin/swaylock -f";
      }
      #{
      #  timeout = 40;
      #  command = "${pkgs.hyprland}/bin/hyprctl dispatch dpms off";
      #  resumeCommand = "${pkgs.hyprland}/bin/hyprctl dispatch dpms on";
      #}
    ];
    systemdTarget = "hyprland-session.target";
  };
}