Added missing programs

This commit is contained in:
k
2025-01-23 12:39:45 -05:00
parent eba2ffcdcd
commit a754632a59
2 changed files with 44 additions and 6 deletions

View File

@@ -6,16 +6,41 @@
}: {
imports = [./waybar.nix ./tile.nix];
home.packages = with pkgs; [
hyprlock
hyprpaper
iio-hyprland
batsignal
jq #iio-hyprland needs this
];
programs = {
hyprlock.enable = true;
};
services = {
hypridle.enable=true;
hyprpaper.enable=true;
hyprpaper.enable = true;
batsignal.enable = true;
hypridle = {
enable = true;
package = pkgs.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";
}
];
};
};
};
wayland.windowManager.hyprland = {