Added dependencies to path

This commit is contained in:
Jan-Bulthuis 2025-04-16 17:55:38 +02:00
parent ea95dfa0d3
commit a3a2616cf8
1 changed files with 7 additions and 1 deletions

View File

@ -23,6 +23,7 @@
# Install system packages # Install system packages
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
carla carla
wprs
xwayland xwayland
]; ];
@ -45,8 +46,13 @@
unitConfig = { unitConfig = {
ConditionUser = "mixer"; ConditionUser = "mixer";
}; };
path = with pkgs; [
wprs
xwayland
];
serviceConfig = { serviceConfig = {
ExecStart = "${pkgs.wprs}/bin/wprsd --enable-xwayland=true --xwayland-xdg-shell-path=${pkgs.wprs}/bin/xwayland-xdg-shell"; # ExecStart = "${pkgs.wprs}/bin/wprsd --enable-xwayland=true --xwayland-xdg-shell-path=${pkgs.wprs}/bin/xwayland-xdg-shell";
ExecStart = "wprsd --enable-xwayland=true";
Environment = "\"RUST_BACKTRACE=full\""; Environment = "\"RUST_BACKTRACE=full\"";
Restart = "always"; Restart = "always";
RestartSec = 5; RestartSec = 5;