sway: restore use of pkgs.sway

Using the final package in the `onChange` block broke some use cases.
This restores the old behavior and instead solves the test
dependencies in a different way.

Fixes #1611

This reverts commit 7c3c64208e.
This commit is contained in:
Robert Helgesson 2020-11-16 22:35:07 +01:00
parent 9e01441c5c
commit 4f20ee61c2
No known key found for this signature in database
GPG key ID: 36BDAA14C2797E89
5 changed files with 50 additions and 35 deletions

View file

@ -399,7 +399,7 @@ in {
swaySocket=''${XDG_RUNTIME_DIR:-/run/user/$UID}/sway-ipc.$UID.$(${pkgs.procps}/bin/pgrep -x sway || ${pkgs.coreutils}/bin/true).sock
if [ -S $swaySocket ]; then
echo "Reloading sway"
$DRY_RUN_CMD ${cfg.package}/bin/swaymsg -s $swaySocket reload
$DRY_RUN_CMD ${pkgs.sway}/bin/swaymsg -s $swaySocket reload
fi
'';
};