nixcfg/homeManagerModules/desktop/hypr/hypridle/default.nix

55 lines
2.4 KiB
Nix
Raw Normal View History

2024-04-07 22:16:33 -04:00
{
pkgs,
lib,
config,
osConfig,
2024-04-07 22:16:33 -04:00
...
}: {
options = {
alyraffauf.desktop.hyprland.hypridle.enable =
lib.mkEnableOption "Enable hypridle.";
};
config = lib.mkIf config.alyraffauf.desktop.hyprland.hypridle.enable {
# Packages that should be installed to the user profile.
home.packages = with pkgs; [hypridle];
2024-04-01 00:27:23 -04:00
xdg.configFile."hypr/hypridle.conf".text = ''
general {
lock_cmd = pidof hyprlock || ${pkgs.hyprlock}/bin/hyprlock # avoid starting multiple hyprlock instances.
before_sleep_cmd = ${pkgs.systemd}/bin/loginctl lock-session # lock before suspend.
after_sleep_cmd = ${config.wayland.windowManager.hyprland.package}/bin/hyprctl dispatch dpms on # to avoid having to press a key twice to turn on the display.
2024-04-01 00:27:23 -04:00
}
listener {
2024-04-18 12:49:35 -04:00
timeout = 300 # 5min.
2024-04-01 00:27:23 -04:00
on-timeout = ${pkgs.brightnessctl}/bin/brightnessctl -s set 10 # set monitor backlight to minimum, avoid 0 on OLED monitor.
on-resume = ${pkgs.brightnessctl}/bin/brightnessctl -r # monitor backlight restor.
}
# turn off keyboard backlight, uncomment this section if have keyboard backlight.
2024-04-07 22:16:33 -04:00
#listener {
2024-04-01 00:27:23 -04:00
# timeout = 150 # 2.5min.
# on-timeout = ${pkgs.brightnessctl}/bin/brightnessctl -sd rgb:kbd_backlight set 0 # turn off keyboard backlight.
# on-resume = ${pkgs.brightnessctl}/bin/brightnessctl -rd rgb:kbd_backlight # turn on keyboard backlight.
#}
listener {
timeout = 300 # 5min
on-timeout = ${pkgs.systemd}/bin/loginctl lock-session # lock screen when timeout has passed
}
listener {
timeout = 330 # 5.5min
on-timeout = ${config.wayland.windowManager.hyprland.package}/bin/hyprctl dispatch dpms off # screen off when timeout has passed
on-resume = ${config.wayland.windowManager.hyprland.package}/bin/hyprctl dispatch dpms on # screen on when activity is detected after timeout has fired.
2024-04-01 00:27:23 -04:00
}
listener {
timeout = 900 # 15min
on-timeout = ${if osConfig.networking.hostName == "mauville" then "" else "${pkgs.systemd}/bin/systemctl suspend"} # suspend pc unless on mauville
2024-04-01 00:27:23 -04:00
}
'';
};
}