Fix naming

This commit is contained in:
SebastianStork 2025-03-18 23:36:49 +01:00
parent 765db19140
commit 0175a0af51
17 changed files with 11 additions and 11 deletions

View file

@ -1,46 +0,0 @@
{
config,
pkgs,
lib,
...
}:
{
options.myConfig.deUtils.hypridle.enable = lib.mkEnableOption "";
config = lib.mkIf config.myConfig.deUtils.hypridle.enable {
home.packages = [ pkgs.brightnessctl ];
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 = 5 * 60;
on-timeout = "brightnessctl --save --exponent set 10%";
on-resume = "brightnessctl --restore";
}
{
timeout = 10 * 60;
on-timeout = "hyprctl dispatch dpms off";
on-resume = "hyprctl dispatch dpms on";
}
{
timeout = 10 * 60 + 10;
on-timeout = "loginctl lock-session";
}
{
timeout = 30 * 60;
on-timeout = "systemctl sleep";
}
];
};
};
};
}