nix/home/modules/hypridle.nix
2026-02-11 15:59:35 -05:00

31 lines
513 B
Nix

{
pkgs,
...
}:
{
home.packages = [ pkgs.hypridle ];
xdg.configFile."hypr/hypridle.conf".text = ''
general {
lock_cmd = wp lock && hyprlock
after_sleep_cmd = hyprctl dispatch dpms on
}
listener {
timeout = 300
on-timeout = wp lock && hyprlock
}
listener {
timeout = 600
on-timeout = hyprctl dispatch dpms off
on-resume = hyprctl dispatch dpms on
}
listener {
timeout = 1800
on-timeout = systemctl suspend
}
'';
}