Kieran's opinionated (and probably slightly dumb) nix config

feat: add suspend after 5 minutes to hyperidle config

Changed files
+5 -1
home-manager
+5 -1
home-manager/hyprland.nix
···
on-timeout = "loginctl lock-session";
}
{
-
timeout = 105;
on-timeout = "hyprctl dispatch dpms off";
on-resume = "hyprctl dispatch dpms on";
}
];
};
···
on-timeout = "loginctl lock-session";
}
{
+
timeout = 90;
on-timeout = "hyprctl dispatch dpms off";
on-resume = "hyprctl dispatch dpms on";
+
}
+
{
+
timeout = 150;
+
on-timeout = "systemctl suspend";
}
];
};