about summary refs log tree commit diff
path: root/nixos/modules/services/audio
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 /nixos/modules/services/audio
parent47e49ff02be5c3d8bde6581a9ddaaa626d1dcecb (diff)
downloadnixlib-259cc7903c78d48d10c930b019bea049a5471884.tar
nixlib-259cc7903c78d48d10c930b019bea049a5471884.tar.gz
nixlib-259cc7903c78d48d10c930b019bea049a5471884.tar.bz2
nixlib-259cc7903c78d48d10c930b019bea049a5471884.tar.lz
nixlib-259cc7903c78d48d10c930b019bea049a5471884.tar.xz
nixlib-259cc7903c78d48d10c930b019bea049a5471884.tar.zst
nixlib-259cc7903c78d48d10c930b019bea049a5471884.zip
nixos/roon-bridge: fix exec name
Diffstat (limited to 'nixos/modules/services/audio')
-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 e9335091ba9a..70392b647cc6 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;