aboutsummaryrefslogtreecommitdiffstats
path: root/users/sils/swayidle/default.nix
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 /users/sils/swayidle/default.nix
parentusers/default.nix: delete (diff)
downloadnix-config-924ec30e7075ea7a9dbac569a537d876f9146850.zip
refactor: move users/sils dir to hm
Diffstat (limited to 'users/sils/swayidle/default.nix')
-rw-r--r--users/sils/swayidle/default.nix28
1 files changed, 0 insertions, 28 deletions
diff --git a/users/sils/swayidle/default.nix b/users/sils/swayidle/default.nix
deleted file mode 100644
index 32befa2..0000000
--- a/users/sils/swayidle/default.nix
+++ /dev/null
@@ -1,28 +0,0 @@
-{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";
- };
-}