diff --git a/home/hyprland/default.nix b/home/hyprland/default.nix index 673abe1..6dbf31a 100644 --- a/home/hyprland/default.nix +++ b/home/hyprland/default.nix @@ -5,6 +5,7 @@ imports = [ ./hyprcursor ./waybar + ./hypridle ]; home.file.".config/hypr/hyprland.conf".source = ./hyprland.conf; diff --git a/home/hyprland/hypridle/default.nix b/home/hyprland/hypridle/default.nix new file mode 100644 index 0000000..e11844f --- /dev/null +++ b/home/hyprland/hypridle/default.nix @@ -0,0 +1,26 @@ +{ ... }: + +{ + services.hypridle = { + enable = true; + settings = { + general = { + after_sleep_cmd = "hyprctl dispatch dpms on"; + ignore_dbus_inhibit = false; + lock_cmd = "hyprlock"; + }; + + listener = [ + { + timeout = 900; # Seconds + on-timeout = "hyprlock"; + } + { + timeout = 5; + on-timeout = "hyprctl dispatch dpms off"; + on-resume = "hyprctl dispatch dpms on"; + } + ]; + }; + }; +} diff --git a/home/hyprland/waybar/default.nix b/home/hyprland/waybar/default.nix index 00dc87e..5ab52d3 100644 --- a/home/hyprland/waybar/default.nix +++ b/home/hyprland/waybar/default.nix @@ -1,8 +1,8 @@ -{...}: +{ ... }: { - home.file.".config/waybar" = { - source = ./config; - recursive = true; - }; + home.file.".config/waybar" = { + source = ./config; + recursive = true; + }; } diff --git a/hyprland/default.nix b/hyprland/default.nix index 1971c94..798d011 100644 --- a/hyprland/default.nix +++ b/hyprland/default.nix @@ -17,4 +17,6 @@ enable = true; xwayland.enable = true; }; + + services.hypridle.enable = true; }