blob: 32befa24ecfd010a4642cf13bcde4f8bd2810e32 (
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 = 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";
};
}
|