nixos-config/modules/nixos/programs/desktop/niri/hypridle.nix
2025-10-22 18:54:16 -04:00

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";
}
];
};
};
}