Merge pull request #47906 from nyanloutre/emby-bin-name-fix

nixos/emby: fix use of outdated binary name changed by #47659
This commit is contained in:
Timo Kaufmann 2018-10-05 17:39:28 +02:00 committed by GitHub
commit 3f98dd18ca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ in
User = cfg.user; User = cfg.user;
Group = cfg.group; Group = cfg.group;
PermissionsStartOnly = "true"; PermissionsStartOnly = "true";
ExecStart = "${pkgs.emby}/bin/MediaBrowser.Server.Mono"; ExecStart = "${pkgs.emby}/bin/emby";
Restart = "on-failure"; Restart = "on-failure";
}; };
}; };