diff options
author | Jon Santmyer <jon@jonsantmyer.com> | 2023-09-23 15:57:37 -0400 |
---|---|---|
committer | Jon Santmyer <jon@jonsantmyer.com> | 2023-09-23 15:57:37 -0400 |
commit | 58eee0458fe2c6976a3982c5b9a3e4919f13adcb (patch) | |
tree | dd427e5e4d1d791696421a60b23537a6c32c8083 /systems | |
parent | f4e995cebe8c9530a16db01b8385eadb1cab405c (diff) | |
download | nix-config-58eee0458fe2c6976a3982c5b9a3e4919f13adcb.tar.gz nix-config-58eee0458fe2c6976a3982c5b9a3e4919f13adcb.tar.bz2 nix-config-58eee0458fe2c6976a3982c5b9a3e4919f13adcb.zip |
move bluetooth into generic config. add bluetooth support for headphones
Diffstat (limited to 'systems')
-rw-r--r-- | systems/bluetooth.nix | 16 | ||||
-rw-r--r-- | systems/default.nix | 1 | ||||
-rw-r--r-- | systems/jonbox/default.nix | 4 |
3 files changed, 17 insertions, 4 deletions
diff --git a/systems/bluetooth.nix b/systems/bluetooth.nix new file mode 100644 index 0000000..d8eb230 --- /dev/null +++ b/systems/bluetooth.nix @@ -0,0 +1,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 ]" +} + ''; + }; +} diff --git a/systems/default.nix b/systems/default.nix index eadf5c5..c10c94e 100644 --- a/systems/default.nix +++ b/systems/default.nix @@ -72,7 +72,6 @@ }; }; - sound.enable = true; services.pipewire = { enable = true; alsa.enable = true; diff --git a/systems/jonbox/default.nix b/systems/jonbox/default.nix index 0f53a7a..cf641f5 100644 --- a/systems/jonbox/default.nix +++ b/systems/jonbox/default.nix @@ -5,6 +5,7 @@ [ # Include the results of the hardware scan. (modulesPath + "/installer/scan/not-detected.nix") ./filesystem.nix + ../bluetooth.nix ]; nixpkgs.config.allowUnfreePredicate = pkg: @@ -39,9 +40,6 @@ package = config.boot.kernelPackages.nvidiaPackages.stable; }; - hardware.bluetooth.enable = true; - services.blueman.enable = true; - programs.light.enable = true; nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; |