Added missing programs
This commit is contained in:
parent
eba2ffcdcd
commit
a754632a59
2 changed files with 44 additions and 6 deletions
|
|
@ -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 = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue