Merge pull request #213483 from lovesegfault/fix-roon-bridge

nixos/roon-bridge: fix exec name
This commit is contained in:
Nick Cao 2023-01-30 14:25:25 +08:00 committed by GitHub
commit 445d1dc7b0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -42,7 +42,7 @@ in {
environment.ROON_DATAROOT = "/var/lib/${name}";
serviceConfig = {
ExecStart = "${pkgs.roon-bridge}/start.sh";
ExecStart = "${pkgs.roon-bridge}/bin/RoonBridge";
LimitNOFILE = 8192;
User = cfg.user;
Group = cfg.group;