nix/modules/hypr/hypridle/default.nix

20 lines
420 B
Nix
Raw Normal View History

2024-08-31 16:04:57 +02:00
{...}: {
home-manager.users.joy.services.hypridle = {
2024-09-01 18:56:28 +02:00
enable = true;
2024-08-31 16:04:57 +02:00
settings = {
listener = [
{
timeout = 300;
on-timeout = "hyprctl dispatch dpms off";
on-resume = "hyprctl dispatch dpms on";
}
{
timeout = 600;
on-timeout = "systemctl suspend";
on-resume = "hyprctl dispatch dpms on";
}
];
};
};
}