nixos/home/system/hyprland/hypridle.nix
2024-06-17 13:47:13 +02:00

22 lines
464 B
Nix

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