Martin Berg Alstad 793b3a16d0
💤 Hypridle
- Added hypridle with a simple config
2024-12-30 23:19:40 +01:00

27 lines
499 B
Nix

{ ... }:
{
services.hypridle = {
enable = true;
settings = {
general = {
after_sleep_cmd = "hyprctl dispatch dpms on";
ignore_dbus_inhibit = false;
lock_cmd = "hyprlock";
};
listener = [
{
timeout = 900; # Seconds
on-timeout = "hyprlock";
}
{
timeout = 5;
on-timeout = "hyprctl dispatch dpms off";
on-resume = "hyprctl dispatch dpms on";
}
];
};
};
}