nixfiles/hosts/hetzner-vm/profiles/mpd-broadcast/hosts/raspberry.nix
2022-11-17 12:06:16 +00:00

16 lines
345 B
Nix

{ pkgs, ... }:
let
sink_name = "roc-raspberry";
description = "Raspberry ROC Output";
ip_addr = "100.118.202.64";
#ip_addr = "100.115.10.34";
in {
services.mpd.extraConfig = ''
audio_output {
type "pipe"
name "${description}"
command "${pkgs.roc-send-pcm}/bin/roc-send-pcm s16le 44.1k 2 ${ip_addr}"
}
'';
}