Merge pull request #158078 from ashkitten/patch-2

nixos/syncplay: fix systemd service
This commit is contained in:
Ellie Hermaszewska 2022-02-05 08:42:19 +08:00 committed by GitHub
commit 58e445a1b5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -68,7 +68,7 @@ in
systemd.services.syncplay = {
description = "Syncplay Service";
wantedBy = [ "multi-user.target" ];
after = [ "network-online.target "];
after = [ "network-online.target" ];
serviceConfig = {
ExecStart = "${pkgs.syncplay}/bin/syncplay-server ${escapeShellArgs cmdArgs}";