summaryrefslogtreecommitdiffstats
path: root/hm/swayidle
diff options
context:
space:
mode:
authorSilas Schöffel <sils@sils.li>2024-04-04 17:06:23 +0200
committerSilas Schöffel <sils@sils.li>2024-04-04 17:06:23 +0200
commit924ec30e7075ea7a9dbac569a537d876f9146850 (patch)
tree11ff56048f05536a1905490137333b3596d0ee18 /hm/swayidle
parentusers/default.nix: delete (diff)
downloadnix-config-924ec30e7075ea7a9dbac569a537d876f9146850.zip
refactor: move users/sils dir to hm
Diffstat (limited to 'hm/swayidle')
-rw-r--r--hm/swayidle/default.nix28
1 files changed, 28 insertions, 0 deletions
diff --git a/hm/swayidle/default.nix b/hm/swayidle/default.nix
new file mode 100644
index 0000000..32befa2
--- /dev/null
+++ b/hm/swayidle/default.nix
@@ -0,0 +1,28 @@
+{pkgs, ...}: {
+ services.swayidle = {
+ enable = true;
+ events = [
+ # TODO: Find a way to close keepassxc-database on lock
+ #{
+ # event = "lock";
+ # command = "";
+ #}
+ {
+ event = "before-sleep";
+ command = "${pkgs.swaylock}/bin/swaylock -f";
+ }
+ ];
+ timeouts = [
+ {
+ timeout = 160;
+ command = "${pkgs.swaylock}/bin/swaylock -f";
+ }
+ #{
+ # timeout = 40;
+ # command = "${pkgs.hyprland}/bin/hyprctl dispatch dpms off";
+ # resumeCommand = "${pkgs.hyprland}/bin/hyprctl dispatch dpms on";
+ #}
+ ];
+ systemdTarget = "hyprland-session.target";
+ };
+}