nixfiles/profiles/sound/pulseaudio/pulse-recv-native-localhost.nix

8 lines
158 B
Nix
Raw Normal View History

2022-01-25 12:15:56 +00:00
{ ... }: {
hardware.pulseaudio = {
extraConfig = ''
load-module module-native-protocol-tcp auth-anonymous=1 auth-ip-acl=127.0.0.1;
'';
};
}