1
0
mirror of https://github.com/kmein/niveum synced 2026-03-17 18:41:09 +01:00
Files
niveum/systems/zaatar/pulseaudio.nix

18 lines
412 B
Nix
Raw Normal View History

2022-05-31 22:26:46 +02:00
{pkgs, ...}: {
sound.enable = true;
2022-08-10 21:07:49 +02:00
environment.systemPackages = [pkgs.ncpamixer];
hardware.pulseaudio = {
2022-05-31 22:26:46 +02:00
package = pkgs.pulseaudioFull;
enable = true;
systemWide = true;
tcp = {
enable = true;
2022-03-10 21:52:12 +01:00
anonymousClients.allowedIpRanges = ["127.0.0.1" "10.243.2.0/24" "192.168.0.0/16"];
};
zeroconf.publish.enable = true;
};
2022-03-10 21:52:12 +01:00
networking.firewall.allowedTCPPorts = [4713];
}