about summary refs log tree commit diff
path: root/modules/user
diff options
context:
space:
mode:
Diffstat (limited to 'modules/user')
-rw-r--r--modules/user/sternenseemann/services/sway.nix3
1 files changed, 1 insertions, 2 deletions
diff --git a/modules/user/sternenseemann/services/sway.nix b/modules/user/sternenseemann/services/sway.nix
index 2c8f7854..5313b585 100644
--- a/modules/user/sternenseemann/services/sway.nix
+++ b/modules/user/sternenseemann/services/sway.nix
@@ -10,7 +10,6 @@ let
 
   bins = (getBins pkgs.pulseaudio [ "pactl" ])
       // (getBins pkgs.dbus [
-        "dbus-run-session"
         "dbus-update-activation-environment"
       ])
       // (getBins cfg.package [ "sway" ])
@@ -128,7 +127,7 @@ in {
     programs.fish.loginShellInit = lib.mkIf cfg.autolaunchFish ''
       if test -z "$DISPLAY"; and test -z "$WAYLAND_DISPLAY"; and test (tty) = "/dev/tty1"
         set -x SWAYSOCK "/run/user/"(id -u)"/sway.sock"
-        exec ${bins.dbus-run-session} -- ${bins.sway}
+        exec ${bins.sway}
       end
     '';