nixos-config/modules/nixos/programs/desktop/niri/hypridle.nix

24 lines
No EOL
389 B
Nix

{ config, ... }:
{
hm.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";
}
];
};
};
}