23 lines
287 B
Nix
23 lines
287 B
Nix
{
|
|
services.hypridle = {
|
|
enable = true;
|
|
settings = {
|
|
general = {
|
|
inhibit_sleep = 3;
|
|
};
|
|
|
|
listener = [
|
|
{
|
|
timeout = 300;
|
|
on-timeout = "pidof hyprlock || hyprlock";
|
|
}
|
|
{
|
|
timeout = 900;
|
|
on-timeout = "systemctl suspend";
|
|
}
|
|
];
|
|
};
|
|
};
|
|
}
|
|
|