nixfiles/hosts/hetzner-vm/services/mpd-broadcast/broadcast.nix

11 lines
314 B
Nix
Raw Normal View History

2022-01-25 13:01:07 +00:00
{ tree, ... }: {
2022-01-25 13:01:22 +00:00
imports = with tree;
[
# systemwide pulseaudio w/ recv native localhost
# to broadcast to all speakers over rtp
profiles.sound.pulseaudio.pulse-systemwide
profiles.sound.pulseaudio.pulse-recv-native-localhost
2022-01-25 14:45:05 +00:00
] ++ [ ./hosts/lappy.nix ./hosts/raspberry.nix ];
2022-01-25 13:01:07 +00:00
}