From affce965f218bfc6ff949b628964329897f05f4b Mon Sep 17 00:00:00 2001 From: Yan Lin Date: Sun, 2 Nov 2025 22:00:44 +0100 Subject: [PATCH] add audio device to deck --- hosts/nixos/deck/system.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/hosts/nixos/deck/system.nix b/hosts/nixos/deck/system.nix index ea3cfef..cbaabe8 100644 --- a/hosts/nixos/deck/system.nix +++ b/hosts/nixos/deck/system.nix @@ -65,6 +65,16 @@ }; }; + # Sound configuration with PipeWire (required for Jovian's DSP layer) + services.pulseaudio.enable = false; # Disable PulseAudio in favor of PipeWire + security.rtkit.enable = true; # RealtimeKit for low-latency audio + services.pipewire = { + enable = true; + alsa.enable = true; # ALSA compatibility + alsa.support32Bit = true; # 32-bit game support + pulse.enable = true; # PulseAudio compatibility for apps + }; + # Jovian Steam Deck configuration jovian = { hardware.has.amd.gpu = true; # Enables backlight control and early modesetting