nix/home/hypridle/default.nix

21 lines
426 B
Nix
Raw Normal View History

2024-08-09 15:56:11 +02:00
{ ... }:
{
2024-08-09 16:06:12 +02:00
services.hypridle = {
2024-08-09 15:56:11 +02:00
enable = true;
2024-08-09 18:27:47 +02:00
settings = {
general = {
after_sleep_cmd = "hyprctl dispatch dpms on";
ignore_dbus_inhibit = false;
};
listener = [
{
timeout = 1200;
on-timeout = "hyprctl dispatch dpms off";
on-resume = "hyprctl dispatch dpms on";
}
];
};
};
2024-08-09 15:56:11 +02:00
}