From 66e3b4da39e3e4b32316974824c4ab209815b81a Mon Sep 17 00:00:00 2001 From: andrey_varnavskiy Date: Thu, 16 Jan 2025 12:59:17 +0500 Subject: [PATCH] alsa support --- nixos/modules/audio.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/nixos/modules/audio.nix b/nixos/modules/audio.nix index 7619ad7..e372d47 100644 --- a/nixos/modules/audio.nix +++ b/nixos/modules/audio.nix @@ -1,6 +1,9 @@ { + security.rtkit.enable = true; services.pipewire = { enable = true; + alsa.enable = true; + alsa.support32Bit = true; pulse.enable = true; }; }