From 7d806c7548da207f7841de95d19851a899de028a Mon Sep 17 00:00:00 2001 From: Jan-Bulthuis Date: Wed, 23 Apr 2025 14:21:17 +0200 Subject: [PATCH] Removed wprsd service --- machines/vm-audio.nix | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/machines/vm-audio.nix b/machines/vm-audio.nix index fd9f177..d63ed51 100644 --- a/machines/vm-audio.nix +++ b/machines/vm-audio.nix @@ -88,22 +88,6 @@ ]; }; - # wprsd service - systemd.user.services.wprsd = { - description = "wprsd Service"; - wantedBy = [ "default.target" ]; - after = [ "network.target" ]; - unitConfig = { - ConditionUser = "mixer"; - }; - serviceConfig = { - ExecStart = "${pkgs.bash}/bin/bash -l -c wprsd --enable-xwayland=true"; # Use login shell to inherit environment - Environment = "\"RUST_BACKTRACE=full\""; - Restart = "always"; - RestartSec = 5; - }; - }; - # Xpra service systemd.user.services.xpra = { description = "Xpra Service";