nixos/home/system/hyprland/hypridle.nix
2024-06-14 20:58:52 +02:00

22 lines
463 B
Nix

{ pkgs, ... }: {
services.hypridle = {
enable = true;
settings = {
general = { ignore_dbus_inhibit = false; };
listener = [
{
timeout = 600;
on-timeout = pkgs.hyprlock + "/bin/hyprlock";
}
{
timeout = 660;
on-timeout = "systemctl suspend";
on-resume = pkgs.libnotify
+ "/bin/notify-send 'Welcome back to your desktop!'";
}
];
};
};
}