Mine is now working. I hadn’t yet configured the audio in my config file:
hardware = {
pulseaudio = {
enable = false;
extraModules = [ pkgs.pulseaudio-modules-bt ];
};
bluetooth = { enable = true; };
};
# Enable sound
sound = {
enable = false;
mediaKeys.enable = true;
};
# Enable audio through pipewire
services.pipewire = {
enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
};
I didn’t test which one of those blocks got it working, but from some other discussion board (I don’t remember the link), someone mentioned that you need to enable pipewire. I’m too noob to understand what I did or why, but this got it working.