From dd559197f141033cc7fe1a65a744a778105eb4c0 Mon Sep 17 00:00:00 2001 From: Lillian-Violet Date: Mon, 9 Dec 2024 00:57:49 +0100 Subject: [PATCH] enable hdmi audio --- nixos/hosts/wheatley/configuration.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nixos/hosts/wheatley/configuration.nix b/nixos/hosts/wheatley/configuration.nix index a07a395..d9b35e0 100644 --- a/nixos/hosts/wheatley/configuration.nix +++ b/nixos/hosts/wheatley/configuration.nix @@ -241,6 +241,8 @@ "net.ipv4.ip_forward" = 1; "net.ipv6.conf.all.forwarding" = 1; }; + # Enable audio devices + boot.kernelParams = ["snd_bcm2835.enable_hdmi=1" "snd_bcm2835.enable_headphones=1"]; # enable NAT networking.nat.enable = true;