forked from Yuka/c3h-nixfiles
Fix pulseaudio so that spotifyd works okay
This commit is contained in:
parent
457f4ac1af
commit
3678349769
1 changed files with 5 additions and 1 deletions
|
@ -5,8 +5,12 @@
|
|||
sound.enable = true;
|
||||
hardware.pulseaudio.enable = true;
|
||||
hardware.pulseaudio.systemWide = true;
|
||||
hardware.pulseaudio.package = pkgs.pulseaudio;
|
||||
hardware.pulseaudio.package = pkgs.pulseaudioFull;
|
||||
hardware.pulseaudio.tcp.enable = true;
|
||||
hardware.pulseaudio.tcp.anonymousClients.allowedIpRanges = [ "127.0.0.0/8" "::/64" "10.23.42.0/24" ];
|
||||
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
|
||||
'';
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue