summary refs log tree commit diff
diff options
context:
space:
mode:
authorBernardo Meurer <bernardo@meurer.org>2023-01-29 19:57:59 -0500
committerBernardo Meurer <bernardo@meurer.org>2023-01-29 19:57:59 -0500
commit259cc7903c78d48d10c930b019bea049a5471884 (patch)
tree0a8595ac7128675499470fb83eec84496314ca86
parent47e49ff02be5c3d8bde6581a9ddaaa626d1dcecb (diff)
downloadnixpkgs-259cc7903c78d48d10c930b019bea049a5471884.tar
nixpkgs-259cc7903c78d48d10c930b019bea049a5471884.tar.gz
nixpkgs-259cc7903c78d48d10c930b019bea049a5471884.tar.bz2
nixpkgs-259cc7903c78d48d10c930b019bea049a5471884.tar.lz
nixpkgs-259cc7903c78d48d10c930b019bea049a5471884.tar.xz
nixpkgs-259cc7903c78d48d10c930b019bea049a5471884.tar.zst
nixpkgs-259cc7903c78d48d10c930b019bea049a5471884.zip
nixos/roon-bridge: fix exec name
-rw-r--r--nixos/modules/services/audio/roon-bridge.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/audio/roon-bridge.nix b/nixos/modules/services/audio/roon-bridge.nix
index e9335091ba9..70392b647cc 100644
--- a/nixos/modules/services/audio/roon-bridge.nix
+++ b/nixos/modules/services/audio/roon-bridge.nix
@@ -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;