From db2d29131cc895b139b680cd49f6b44881e87f05 Mon Sep 17 00:00:00 2001 From: Jan-Bulthuis Date: Wed, 16 Apr 2025 16:51:01 +0200 Subject: [PATCH] Added path to xwayland-xdg-shell --- machines/vm-audio.nix | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/machines/vm-audio.nix b/machines/vm-audio.nix index 83543b9..315b9b0 100644 --- a/machines/vm-audio.nix +++ b/machines/vm-audio.nix @@ -65,12 +65,6 @@ }; users.groups.mixer = { }; - # Extra packages - environment.systemPackages = with pkgs; [ - wprs - xwayland - ]; - # wprsd service systemd.user.services.wprsd = { description = "wprsd Service"; @@ -80,7 +74,7 @@ ConditionUser = "mixer"; }; serviceConfig = { - ExecStart = "${pkgs.wprs}/bin/wprsd"; + ExecStart = "${pkgs.wprs}/bin/wprsd --xwayland-xdg-shell-path=${pkgs.wprs}/bin/xwayland-xdg-shell"; Environment = "\"RUST_BACKTRACE=full\""; Restart = "always"; RestartSec = 5;