summaryrefslogtreecommitdiffstats
path: root/systems/bluetooth.nix
blob: d8eb2309599fbaf401c8b74fb5b77752689a68fa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ inputs, outputs, config, hostname, username, lib, pkgs, stateVersion, ... }:
{
    hardware.bluetooth.enable = true;
    services.blueman.enable = true;

    environment.etc = {
        "wireplumber/bluetooth.lua.d/51-bluez-config.lua".text = ''
bluez_monitor.properties = {
    ["bluez5.enable-sbc-xq"] = true,
    ["bluez5.enable-msbc"] = true,
    ["bluez5.enable-hw-volume"] = true,
    ["bluez5.headset-roles"] = "[ hsp_hs hsp_ag hfp_hf hfp_ag ]"
}
        '';
    };
}