nixfiles/modules/desktop/sound.nix
2024-03-16 14:49:01 +01:00

21 lines
No EOL
359 B
Nix

{
config,
pkgs,
...
}:
{
sound.enable = true;
hardware.pulseaudio.enable = false;
hardware.bluetooth.enable = true;
hardware.bluetooth.powerOnBoot = true;
security.rtkit.enable = true;
services.pipewire = {
enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
};
services.blueman.enable = true;
}