nix/home/hypridle/default.nix

20 lines
398 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 = [
{
timeout = 600;
on-timeout = "hyprctl dispatch dpms off";
on-resume = "hyprctl dispatch dpms on";
}
{
timeout = 1200;
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
}