diff options
author | stuebinm | 2024-08-12 17:40:20 +0200 |
---|---|---|
committer | stuebinm | 2024-08-12 17:40:20 +0200 |
commit | 8d7a2be2f9cfcc7ef8d4f78218ba367eb4df16c0 (patch) | |
tree | 69b80216b0b2194d254dc24b2c6b44f345b01167 /common | |
parent | e7fbfd6191ba36079a7aacbd90bc4d1a84ca37a7 (diff) |
desktop: pulseaudio → pipewire
Diffstat (limited to 'common')
-rw-r--r-- | common/desktop.nix | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/common/desktop.nix b/common/desktop.nix index 5d3bcf5..4c07183 100644 --- a/common/desktop.nix +++ b/common/desktop.nix @@ -90,5 +90,19 @@ # Enable sound. sound.enable = true; - hardware.pulseaudio.enable = true; + # hardware.pulseaudio.enable = true; + + xdg.portal.wlr.enable = true; + + services.pipewire = { + enable = true; + audio.enable = true; + pulse.enable = true; + alsa = { + enable = true; + support32Bit = true; + }; + # jack.enable = true; + }; + } |