aboutsummaryrefslogtreecommitdiff
path: root/modules/hardware/bluetooth
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2023-05-02 17:50:50 -0700
committerFranck Cuny <franck@fcuny.net>2023-05-02 17:50:50 -0700
commit80b2a5ed2cf30c66ec75480c24c53c7b329c3381 (patch)
tree11c574af791e9a71ec39b03ffa682b58584bf796 /modules/hardware/bluetooth
parentprofiles/default: move default packages there (diff)
downloadinfra-80b2a5ed2cf30c66ec75480c24c53c7b329c3381.tar.gz
profiles/hardware: create a few profiles related to hardware
Diffstat (limited to 'modules/hardware/bluetooth')
-rw-r--r--modules/hardware/bluetooth/default.nix65
1 files changed, 0 insertions, 65 deletions
diff --git a/modules/hardware/bluetooth/default.nix b/modules/hardware/bluetooth/default.nix
deleted file mode 100644
index b48c51c..0000000
--- a/modules/hardware/bluetooth/default.nix
+++ /dev/null
@@ -1,65 +0,0 @@
-{ config, lib, pkgs, ... }:
-let cfg = config.my.hardware.bluetooth;
-in
-{
- options.my.hardware.bluetooth = with lib; {
- enable = mkEnableOption "bluetooth configuration";
- };
-
- config = lib.mkIf cfg.enable {
- hardware.bluetooth.enable = true;
- services.blueman.enable = true;
-
- hardware.pulseaudio = {
- extraModules = [ pkgs.pulseaudio-modules-bt ];
- package = pkgs.pulseaudioFull;
- };
-
- environment.etc = {
- "wireplumber/bluetooth.lua.d/50-bluez-config.lua".text = ''
- bluez_monitor.properties = {
- ["bluez5.headset-roles"] = "[ hsp_hs hsp_ag hfp_hf hfp_ag ]",
- -- mSBC provides better audio + microphone
- ["bluez5.enable-msbc"] = true,
- -- SBC XQ provides better audio
- ["bluez5.enable-sbc-xq"] = true,
- -- Hardware volume control
- ["bluez5.enable-hw-volume"] = true,
- }
- '';
- };
-
- services.pipewire = {
- media-session.config.bluez-monitor.rules = [
- {
- # Matches all cards
- matches = [{ "device.name" = "~bluez_card.*"; }];
- actions = {
- "update-props" = {
- "bluez5.reconnect-profiles" = [ "hfp_hf" "hsp_hs" "a2dp_sink" ];
- # mSBC provides better audio + microphone
- "bluez5.msbc-support" = true;
- # SBC XQ provides better audio
- "bluez5.sbc-xq-support" = true;
- };
- };
- }
- {
- matches = [
- # Matches all sources
- {
- "node.name" = "~bluez_input.*";
- }
- # Matches all outputs
- { "node.name" = "~bluez_output.*"; }
- ];
- actions = { "node.pause-on-idle" = false; };
- }
- ];
- };
-
- hardware.bluetooth.settings = {
- General = { Enable = "Source,Sink,Media,Socket"; };
- };
- };
-}