Added dependencies to path
This commit is contained in:
parent
ea95dfa0d3
commit
a3a2616cf8
|
@ -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;
|
||||||
|
|
Loading…
Reference in New Issue