24 lines
No EOL
410 B
Nix
24 lines
No EOL
410 B
Nix
{ config, ... }:
|
|
|
|
{
|
|
home-manager.users.wo2w.services.hypridle = {
|
|
enable = true;
|
|
settings = {
|
|
general = {
|
|
lock_cmd = "hyprlock";
|
|
before_sleep_cmd = "hyprlock";
|
|
};
|
|
|
|
listener = [
|
|
{
|
|
timeout = 300;
|
|
on-timeout = "hyprlock";
|
|
}
|
|
{
|
|
timeout = 900;
|
|
on-timeout = "systemctl sleep";
|
|
}
|
|
];
|
|
};
|
|
};
|
|
} |