Commit 00acec5b2f8c

Vincent Demeester <vincent@sbr.pm>
2018-08-05 17:35:59
AllowAll in pulseaudio
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
1 parent 15154f0
Changed files (1)
profiles
profiles/audio.nix
@@ -11,7 +11,10 @@
 			};
 			tcp = {
 				enable = true;
-				anonymousClients.allowedIpRanges = [ "127.0.0.1" "192.168.12.0/24" "10.0.0.0/24" ];
+				anonymousClients = {
+          allowAll = true;
+          allowedIpRanges = [ "127.0.0.1" "192.168.12.0/24" "10.0.0.0/24" ];
+        };
 			};
 			package = pkgs.pulseaudioFull;
 		};