NixOS/home/modules/hyprland/hypridle.nix

34 lines
841 B
Nix
Raw Normal View History

2024-06-12 09:54:11 +07:00
{ lib, config, unstable, ... }:
let
cfg = config.profile.hyprland;
in
{
config = lib.mkIf cfg.enable {
services.hypridle = {
enable = true;
settings = {
general = {
lock_cmd = "pidof hyprlock || hyprlock";
before_sleep_cmd = "loginctl lock-session";
after_sleep_cmd = "hyprctl dispatch dpms on";
};
listener = [
{
timeout = cfg.hypridle.lockTimeout;
on-timeout = "loginctl lock-session";
}
{
timeout = cfg.hypridle.dpmsTimeout;
on-timeout = "hyprctl dispatch dpms off";
on-resume = "hyprctl dispatch dpms on";
}
{
timeout = cfg.hypridle.suspendTimeout;
on-timeout = "systemctl suspend";
}
];
};
};
2024-06-12 09:54:11 +07:00
};
}