From 7b79203f54853733d4fae88943829d0e24e6e49f Mon Sep 17 00:00:00 2001 From: Jon Santmyer Date: Sun, 7 Jan 2024 12:00:08 -0500 Subject: massive overhaul --- modules/hardware/audio.nix | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 modules/hardware/audio.nix (limited to 'modules/hardware/audio.nix') diff --git a/modules/hardware/audio.nix b/modules/hardware/audio.nix new file mode 100644 index 0000000..3ffa32a --- /dev/null +++ b/modules/hardware/audio.nix @@ -0,0 +1,44 @@ +{ + config, + options, + lib, + pkgs, + ... +}: let + audioConfig = config.modules.hardware.audio; + device = config.modules.device; +in { + options.modules.hardware.audio = { + enable = lib.mkOption { + type = lib.types.bool; + default = true; + }; + }; + + config = lib.mkIf (audioConfig.enable) (lib.mkMerge [ + { + security.rtkit.enable = true; + services.pipewire = { + enable = true; + alsa.enable = true; + alsa.support32Bit = true; + pulse.enable = true; + }; + + user.extraGroups = ["audio"]; + home.packages = [pkgs.pavucontrol]; + } + (lib.mkIf (device.hasBluetooth) { + home.configFile = { + "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 ]" + } + ''; + }; + }) + ]); +} -- cgit v1.2.1