rpi-server: disable audio

pull/20/head
Sebastien Bourdeauducq 2021-06-15 14:32:29 +08:00
parent d032757901
commit c828cf290d
1 changed files with 1 additions and 10 deletions

View File

@ -13,9 +13,6 @@
boot.loader.raspberryPi = pkgs.lib.mkIf rpi4 { boot.loader.raspberryPi = pkgs.lib.mkIf rpi4 {
enable = true; enable = true;
version = 4; version = 4;
firmwareConfig = ''
dtparam=audio=on
'';
}; };
boot.kernelParams = ["cma=64M"]; # work around https://github.com/raspberrypi/linux/issues/3208 boot.kernelParams = ["cma=64M"]; # work around https://github.com/raspberrypi/linux/issues/3208
boot.kernelPackages = if rpi4 then pkgs.linuxPackages_rpi4 else pkgs.linuxPackages_rpi3; boot.kernelPackages = if rpi4 then pkgs.linuxPackages_rpi4 else pkgs.linuxPackages_rpi3;
@ -138,13 +135,7 @@
hardware.sane.enable = true; hardware.sane.enable = true;
hardware.sane.extraBackends = [ pkgs.hplip ]; hardware.sane.extraBackends = [ pkgs.hplip ];
sound.enable = true; networking.firewall.allowedTCPPorts = [ 631 ];
hardware.pulseaudio.enable = true;
hardware.pulseaudio.systemWide = true;
hardware.pulseaudio.tcp.enable = true;
hardware.pulseaudio.tcp.anonymousClients.allowedIpRanges = ["192.168.1.0/24"];
networking.firewall.allowedTCPPorts = [ 631 4713 ];
networking.firewall.interfaces.wlan0.allowedUDPPorts = [ 53 67 ]; networking.firewall.interfaces.wlan0.allowedUDPPorts = [ 53 67 ];
nix.binaryCachePublicKeys = ["nixbld.m-labs.hk-1:5aSRVA5b320xbNvu30tqxVPXpld73bhtOeH6uAjRyHc="]; nix.binaryCachePublicKeys = ["nixbld.m-labs.hk-1:5aSRVA5b320xbNvu30tqxVPXpld73bhtOeH6uAjRyHc="];