about summary refs log tree commit diff stats
path: root/home-manager
diff options
context:
space:
mode:
authorene <ene@sils.li>2023-04-07 11:04:40 +0200
committerene <ene@sils.li>2023-04-07 11:04:40 +0200
commitdd3200e5dc1361971850ce636fe05d8c7a985355 (patch)
treea04c27771b354ca954dfd9c5b00322f9463e7ed8 /home-manager
parentFeat(hm/packages): Add brave and ungoogled-chromium (diff)
downloadnixos-config-dd3200e5dc1361971850ce636fe05d8c7a985355.tar.gz
nixos-config-dd3200e5dc1361971850ce636fe05d8c7a985355.zip
Style(treewide): Format with Alejandra
Diffstat (limited to '')
-rw-r--r--home-manager/config/swayidle/default.nix43
1 files changed, 21 insertions, 22 deletions
diff --git a/home-manager/config/swayidle/default.nix b/home-manager/config/swayidle/default.nix
index f2d5cf81..43807e2a 100644
--- a/home-manager/config/swayidle/default.nix
+++ b/home-manager/config/swayidle/default.nix
@@ -3,30 +3,29 @@
   pkgs,
   ...
 }: {
-
   xdg.configFile."swayidle/config".source = ./config;
 
-#  services.swayidle = {
-#    enable = true;
-#    events = [
-#      {
-#        event = "before-sleep";
-#        command = "${pkgs.swaylock}/bin/swaylock -f ";
-#      }
-#    ];
-#    timeouts = [
-#      {
-#        timeout = 180;
-#        command = "${pkgs.swaylock}/bin/swaylock -fFu ";
-#      }
-#      {
-#        timeout = 360;
-#        # TODO systemctl is installed?
-#        command = "systemctl suspend-then-hibernate";
-#      }
-#    ];
-#    # systemdTarget = ""; # TODO this might be usefull
-#  };
+  #  services.swayidle = {
+  #    enable = true;
+  #    events = [
+  #      {
+  #        event = "before-sleep";
+  #        command = "${pkgs.swaylock}/bin/swaylock -f ";
+  #      }
+  #    ];
+  #    timeouts = [
+  #      {
+  #        timeout = 180;
+  #        command = "${pkgs.swaylock}/bin/swaylock -fFu ";
+  #      }
+  #      {
+  #        timeout = 360;
+  #        # TODO systemctl is installed?
+  #        command = "systemctl suspend-then-hibernate";
+  #      }
+  #    ];
+  #    # systemdTarget = ""; # TODO this might be usefull
+  #  };
 }
 # vim: ts=2