From 793b3a16d0daa8a6bfc41fad9c80acd15194217d Mon Sep 17 00:00:00 2001 From: Martin Berg Alstad Date: Mon, 30 Dec 2024 23:19:40 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=A4=20Hypridle?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Added hypridle with a simple config --- home/hyprland/default.nix | 1 + home/hyprland/hypridle/default.nix | 26 ++++++++++++++++++++++++++ home/hyprland/waybar/default.nix | 10 +++++----- hyprland/default.nix | 2 ++ 4 files changed, 34 insertions(+), 5 deletions(-) create mode 100644 home/hyprland/hypridle/default.nix 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; }