c3h-nixfiles/shared-services/pulseaudio.nix

17 lines
573 B
Nix
Raw Normal View History

2021-08-21 16:47:21 +00:00
{ pkgs, ... }:
{
networking.firewall.allowedTCPPorts = [ 4713 ];
sound.enable = true;
hardware.pulseaudio.enable = true;
hardware.pulseaudio.systemWide = true;
hardware.pulseaudio.package = pkgs.pulseaudioFull;
2021-08-21 16:47:21 +00:00
hardware.pulseaudio.tcp.enable = true;
hardware.pulseaudio.tcp.anonymousClients.allowedIpRanges = [ "127.0.0.0/8" "::/64" "10.23.42.0/24" ];
2021-10-22 22:25:25 +00:00
environment.variables.PULSE_SERVER = "127.0.0.1";
hardware.pulseaudio.extraConfig = ''
unload-module module-native-protocol-unix
load-module module-native-protocol-unix auth-anonymous=1
'';
2021-08-21 16:47:21 +00:00
}