diff options
-rw-r--r-- | sound.nix | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/sound.nix b/sound.nix index 10c3916..a47e4ef 100644 --- a/sound.nix +++ b/sound.nix @@ -1,6 +1,12 @@ { config, pkgs, ... }: { - sound.enable = true; - hardware.pulseaudio.enable = true; + security.rtkit.enable = true; + services.pipewire = { + enable = true; + alsa.enable = true; + alsa.support32Bit = true; + pulse.enable = true; + jack.enable = true; + }; } |