nixfiles/hosts/common/sound.nix

21 lines
359 B
Nix
Raw Normal View History

2024-03-16 12:21:25 +00:00
{
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;
}