diff --git a/home/home.nix b/home/home.nix index 765999b..a7e6c3c 100644 --- a/home/home.nix +++ b/home/home.nix @@ -213,21 +213,21 @@ with lib; { events = [ { event = "before-sleep"; - command = "swaylock_bg_blur.sh"; + command = "${pkgs.swaylock}/bin/swaylock"; } { event = "lock"; - command = "swaylock_bg_blur.sh"; + command = "${pkgs.swaylock}/bin/swaylock"; } { event = "after-resume"; - command = "pkill -USR1 i3status-rs"; + command = "${procps.pkill}/bin/pkill -USR1 i3status-rs"; } ]; timeouts = [ { timeout = 15 * 60; - command = "swaylock_bg_blur.sh"; + command = "${pkgs.swaylock}/bin/swaylock"; } ]; };