diff --git a/profiles/gui/nixos/sound.nix b/profiles/gui/nixos/sound.nix index cc7991cf..f86d91ea 100644 --- a/profiles/gui/nixos/sound.nix +++ b/profiles/gui/nixos/sound.nix @@ -7,8 +7,11 @@ defaults.pcm.rate_converter "speexrate_best" ''; }; + + /* hardware.pulseaudio = { enable = true; + extraConfig = "unload-module module-role-cork"; daemon.config = { exit-idle-time = 5; resample-method = "speex-float-5"; @@ -20,4 +23,15 @@ default-sample-channels = 2; }; }; + */ + + security.rtkit.enable = true; + + services.pipewire = { + enable = true; + pulse.enable = true; + alsa.support32Bit = true; + jack.enable = true; + alsa.enable = true; + }; }