22 lines
440 B
Nix
22 lines
440 B
Nix
{ user, home }:
|
|
{ ... }:
|
|
{
|
|
home-manager.users.${user}.services.hypridle = {
|
|
enable = true;
|
|
settings = {
|
|
listener = [
|
|
{
|
|
timeout = 60;
|
|
on-timeout = "brightnessctl -s set 10%";
|
|
on-resume = "brightnessctl -r";
|
|
}
|
|
{
|
|
timeout = 300;
|
|
on-timeout = "hyprctl dispatch dpms off";
|
|
on-resume = "hyprctl dispatch dpms on";
|
|
}
|
|
];
|
|
};
|
|
};
|
|
}
|