nix/home/hypridle/default.nix

21 lines
376 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 = {
2024-08-10 13:50:10 +02:00
general = [
{
ignore_dbus_inhibit = false;
}
];
listener = [
{
timeout = 300;
on-timeout = "hyprctl dispatch dpms off";
on-resume = "hyprctl dispatch dpms on";
}
];
};
2024-08-09 18:27:47 +02:00
};
2024-08-09 15:56:11 +02:00
}