nixos/legacy/modules/bluetooth-audio.nix
2022-12-05 20:32:39 +01:00

16 lines
317 B
Nix

{ config, lib, pkgs, ... }:
{
hardware.bluetooth = {
enable = true;
package = pkgs.bluezFull;
settings = {
General = {
Enable = "Source,Sink,Media,Socket";
};
};
};
services.blueman.enable = true;
environment.systemPackages = with pkgs; [
sony-headphones-client
];
}