nix-config/home/features/desktop/hyprland/swayidle.nix
2024-09-22 10:56:59 +02:00

18 lines
418 B
Nix

{ config, ... }:
let swaylock = "${config.programs.swaylock.package}/bin/swaylock";
in {
services.swayidle = {
enable = true;
systemdTarget = "graphical-session.target";
events = [{
event = "before-sleep";
command = "${swaylock} --daemonize";
}];
# timeouts = [
# {
# timeout = 4 * 60;
# command = "${swaylock} --daemonize --grace 15";
# }
# ];
};
}