commit 0512a9d067bb800ec214e4f27db41d18ee43e778
parent f9539e9662744b363ae589c132181e661648a2b4
Author: Vincent Demeester <vincent@sbr.pm>
Date: Thu, 12 Sep 2019 11:06:17 +0200
services.shairport-sync: update systemd service
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/modules/services/shairport-sync.nix b/modules/services/shairport-sync.nix
@@ -27,7 +27,7 @@ in
};
arguments = mkOption {
- default = "-v -j -o pa";
+ default = "-v -o pa";
description = ''
Arguments to pass to the daemon. Defaults to a local pulseaudio
server.
@@ -65,7 +65,7 @@ in
Environment = "PATH=${config.home.profileDirectory}/bin";
ExecStart = "${pkgs.shairport-sync}/bin/shairport-sync ${cfg.arguments}";
ExecStop = "${pkgs.procps}/bin/pkill shairport-sync";
- Type = "forking";
+ Type = "simple";
};
};
};