nixfiles/hosts/raspberry/services/mpd-recv.nix

18 lines
497 B
Nix
Raw Normal View History

2022-01-25 14:45:05 +00:00
{ tree, ... }: {
imports = with tree; [
profiles.connectivity.bluetooth
profiles.sound.pulseaudio.pulse
profiles.sound.pulseaudio.pulse-systemwide
profiles.sound.pulseaudio.pulse-bluetooth
profiles.sound.pulseaudio.pulse-recv-native-localhost
profiles.sound.pulseaudio.pulse-recv-rtp
];
hardware.pulseaudio.extraConfig = ''
load-module module-bluetooth-policy
load-module module-bluetooth-discover
set-default-sink bluez_card.3E_39_E7_B2_86_29
'';
}
p