rozbicie home.nix i prace nad librewolf w home-manager

This commit is contained in:
installer
2025-02-17 21:25:19 +01:00
parent 2a3a42a087
commit 8026ce5f17
10 changed files with 611 additions and 488 deletions

View File

@@ -0,0 +1,24 @@
{...}: {
services = {
hypridle = {
settings = {
general = {
after_sleep_cmd = "hyprctl dispatch dpms on";
ignore_dbus_inhibit = false;
lock_cmd = "hyprlock";
};
listener = [
{
timeout = 900;
on-timeout = "hyprlock";
}
{
timeout = 1200;
on-timeout = "hyprctl dispatch dpms off";
on-resume = "hyprctl dispatch dpms on";
}
];
};
};
};
}