about summary refs log tree commit diff
path: root/users/fcuny/desktop/wm/screenlock.nix
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2022-04-09 09:42:03 -0700
committerFranck Cuny <franck@fcuny.net>2022-04-09 09:42:03 -0700
commit1125aaa49aec6a220fd3b9d03076fec398b35a14 (patch)
tree5570b0c094ead9d7879ca3d360ff3de7f45d4516 /users/fcuny/desktop/wm/screenlock.nix
parentdelete all CLI modules (diff)
downloadworld-1125aaa49aec6a220fd3b9d03076fec398b35a14.tar.gz
add a few more modules to home/ and delete stuff
Diffstat (limited to 'users/fcuny/desktop/wm/screenlock.nix')
-rw-r--r--users/fcuny/desktop/wm/screenlock.nix27
1 files changed, 0 insertions, 27 deletions
diff --git a/users/fcuny/desktop/wm/screenlock.nix b/users/fcuny/desktop/wm/screenlock.nix
deleted file mode 100644
index 24fde8c..0000000
--- a/users/fcuny/desktop/wm/screenlock.nix
+++ /dev/null
@@ -1,27 +0,0 @@
-{ pkgs, config, ... }:
-
-{
-
-  xdg.configFile."swaylock/config" = {
-    source = ../../configs/swaylock/config;
-  };
-
-  # https://github.com/nix-community/home-manager/pull/2610
-  # won't be needed for ever
-  systemd.user.services.swayidle = {
-    Unit.PartOf = [ "sway-session.target" ];
-    Install.WantedBy = [ "sway-session.target" ];
-
-    Service = {
-      Environment = "PATH=${pkgs.bash}/bin:${config.wayland.windowManager.sway.package}/bin";
-      ExecStart = ''
-        ${pkgs.swayidle}/bin/swayidle -w \
-            timeout 300 "${pkgs.swaylock}/bin/swaylock" \
-            timeout 300 'swaymsg "output * dpms off"' \
-                resume 'swaymsg "output * dpms on"' \
-            before-sleep "${pkgs.swaylock}/bin/swaylock"
-      '';
-      Restart = "on-failure";
-    };
-  };
-}