summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--custom/trivmix-service.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/custom/trivmix-service.nix b/custom/trivmix-service.nix
index 9a8ed504..406cfc71 100644
--- a/custom/trivmix-service.nix
+++ b/custom/trivmix-service.nix
@@ -81,7 +81,7 @@ let
81 ++ optional (! isNull group) "/dev/shm/mix/${group}/level"; 81 ++ optional (! isNull group) "/dev/shm/mix/${group}/level";
82 in { 82 in {
83 wantedBy = [ "sound.target" ]; 83 wantedBy = [ "sound.target" ];
84 requires = [ "jack.service" ] ++ map (n: n + ".service") mixerDeps; 84 bindsTo = [ "jack.service" ] ++ map (n: n + ".service") mixerDeps;
85 after = [ "jack.service" ] ++ map (n: n + ".service") mixerDeps; 85 after = [ "jack.service" ] ++ map (n: n + ".service") mixerDeps;
86 path = with pkgs; [ jack2Full trivmix ]; 86 path = with pkgs; [ jack2Full trivmix ];
87 serviceConfig = { 87 serviceConfig = {