nix/home/hypridle/default.nix

20 lines
397 B
Nix
Raw Normal View History

2024-08-21 09:02:49 +02:00
{...}: {
2024-08-09 16:06:12 +02:00
services.hypridle = {
2024-08-09 15:56:11 +02:00
enable = true;
2024-08-21 09:02:49 +02:00
settings = {
listener = [
{
2024-08-22 19:02:54 +02:00
timeout = 300;
2024-08-21 09:02:49 +02:00
on-timeout = "hyprctl dispatch dpms off";
on-resume = "hyprctl dispatch dpms on";
}
{
2024-08-22 19:02:54 +02:00
timeout = 600;
2024-08-21 09:02:49 +02:00
on-timeout = "systemctl suspend";
on-resume = "hyprctl dispatch dpms on";
}
];
2024-08-09 18:27:47 +02:00
};
2024-08-21 09:02:49 +02:00
};
2024-08-09 15:56:11 +02:00
}